欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql-MySQL错误Every derived table must have its own alias

程序员文章站 2022-06-07 13:58:05
...
mysql

SELECT *
from (select *
from student
where dept_name = 'Comp.Sci.')
natural full outer join
(select *
from takes
where semester = 'Spring' and year = 2009 ) as aa ;

        到底怎么改 T-T
相关标签: mysql