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 difference between sum and count in sql?
What is %type in sql?
What is pragma in pl sql?
Can we call procedure in select statement?
What is the difference between microsoft sql and mysql?
What is difference between function and trigger?
What are the constraints available in sql?
What is the difference between nvl function, ifnull function, and isnull function?
Is sql dba a good career? : SQL DBA
What is partition by in sql?
Why do we use joins?
What is pl sql script?
Explain aggregate functions are available there in sql?
Mention what are the benefits of pl/sql packages?
what is a primary key? : Sql dba