Error 1248 in mysql

327 Views Asked by At

I am trying to run this query.

select *
from (select *
      from student
      where dept_name= ’Comp. Sci’)
      natural left outer join
     (select *
      from takes
      where semester = ’Spring’ and year = 2009);

But every time i get the

error# 1248: every derived table must have its own alias.

I have tried creating aliases of all the tables that are being derived but same error appears every time.

How can i resolve this problem. I looked up some already answered question but no luck.

2

There are 2 best solutions below

1
On

Try this :::

select * from 
(select * from student s where dept_name= ’Comp. Sci’) as tempLeft 
left join (select * from takes t where semester = ’Spring’ and year = 2009) on (// join condition)
3
On

Add aliases for subqueries:

select * 
from 
    (select * from student s where dept_name= 'Comp. Sci') as data1 
    natural left outer join (select * from takes t where semester = 'Spring' and year = 2009) as data2;