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 / debanjan rudra

select stud.name NAME,
stud.sid SID
from student stud,
level lvl
where stud.course = 3
and lvl.level = 'freshman';

Is This Answer Correct ?    0 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how many sql dml commands are supported by 'mysql'? : Sql dba

560


what are myisam tables? : Sql dba

539


What is the basic form of sql query?

483


Why self join is used in sql?

483


How long it takes to learn pl sql?

523






How many types of functions are there in sql?

490


How much does sql cost?

512


What are inner outer left and right joins in sql?

502


What is a crud api?

489


Is it possible to update views?

528


What are dml commands?

515


What is clause?

598


Is pl sql better than sql?

540


What is ttitle and btitle?

567


Can a trigger call a stored procedure?

525