Given two tables Student(SID, Name, Course) and Level(SID,
level) write the SQL statement to get the name and SID of
the student who are taking course = 3 and at freshman level.

Answer Posted / nagendra

select e.sid, e.name from student e, level d where e.course
= 3 and d.level = 'FISHERMAN'

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is structural independence and why is it important?

546


What is an emotional trigger?

515


What is the basic structure of an sql?

569


What is right join sql?

532


Explain the steps needed to create the scheduled job?

557






What does subquery mean in sql?

536


how to start mysql server? : Sql dba

609


Is there a 64 bit version of ssms?

516


Why do we use joins?

564


what is the difference between rownum pseudo column and row_number() function? : Sql dba

616


how to use like conditions? : Sql dba

573


What is procedure and function?

513


How many types of normalization are there?

487


What is the clause we need to add in function body to return variable?

538


How do I make my sql query run faster?

466