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 / ani
SELECT
S.Name
,S.SID
FROM Student S
INNER JOIN Level L ON S.SID=L.SID
WHERE S.Course=3 AND L.level='freshman'
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What does rownum mean in sql?
What is raw datatype in sql?
What are the sql commands?
What is normalization sql?
What is a constraint?
What is the basic form of sql query?
What are tables in sql?
What is trigger in sql and its types?
What are the different dcl commands in sql?
What are the different schemas objects that can be created using pl/sql?
What is meaning of <> in sql?
What are the main features of cursor?
what is the use of set statement in tsql? : Transact sql
What does select top 1 do in sql?
How do I run sql profiler?