Hi All,
I am facing the the problem in writing SQL.I have created 3 tables as specified in the below link.
https://www.youtube.com/watch?v=ZK99RuMhvxY
I have written the SQL Script as specified below. The system throwing the error message as attached below. All the fields are specified as same as table but still the error message is telling as one field is missing.Can you please help on this.
SQL Query :
select s.fname, c.c_name from "TR_YYY"."Student" s
left outer join "TR_YYY"."Student_Course" sc
on s.sno = sc.student_id
full outer join "TR_YYY"."Course" c
on c.id = sc.course_id
Thanks.