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 / guest
SELECT S.Name,S.SID
FROM Student S, Level L
WHERE S.SID=L.SID
AND L.level='freshman'
AND S.Course=3
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the use of nvl function?
discuss about myisam key cache. : Sql dba
How will you distinguish a global variable with a local variable in pl/sql?
what is try_catch block in procedure
what is the difference between undefined value and null value? : Sql dba
What is a relationship and what are they?
What are the operators used in select statements?
What does where 1 1 mean in sql?
How does a self join work?
which tcp/ip port does sql server run on? : Sql dba
what is 'mysqldump'? : Sql dba
What is the difference between function, procedure and package in pl/sql?
What are transaction and its controls?
how to dump a table to a file with 'mysqldump'? : Sql dba
What do we need to check in database testing?