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 / supreeth
SELECT Student.name, Student.SID
FROM Student, Level
WHERE Student.SID = Level.SID
AND Level.Level = "freshman"
AND Student.Course = 3;
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
What is having clause in sql?
Why do we use joins?
What is the difference between drop and truncate commands?
How much ram can sql express use?
Explain the commit statement.
What is the difference between having clause and where clause?
what is the bond code in materialized view?
Why use triggers in sql?
what is the difference between a local and a global temporary table? : Sql dba
How to run sql commands in sql*plus?
When do we use triggers?
How do you run a query?
What is left inner join in sql?
Explain the difference between triggers and constraints?
Describe types of sql statements?