1.

Select * from student join takes using (ID); The above query is equivalent to :

A. Select * from student inner join takes using (ID);
B. Select * from student outer join takes using (ID);
C. Select * from student left outer join takes using (ID);
D. All of the mentioned
Answer» B. Select * from student outer join takes using (ID);


Discussion

No Comment Found