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.
Try this :::