Page 1 of 1

How can we select the elements which have common Dept_name in both the relation ?

Posted: Thu Jul 14, 2022 8:47 am
by answerhappygod
a) Select * from instructor i , course c where i.Dept_name=c.Dept_name;
b) Select Dept name from instructor ,Course ;
c) Select * from instructor i , course c ;
d) Select Dept_name from instructor where Dept_name = NULL;