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 not null in sql?
Can sql function call stored procedure?
Is id a reserved word in sql?
What are the advantages of sql? Explain
How many databases can sql express handle?
Which is better cte or subquery?
Why do we use sqlite?
What is a sql driver?
What does t sql mean?
Why is theta join required?
How do I create an index in word?
Can we use delete in merge statement?
How to add a column ‘salary’ to a table employee_details?
How do you clear the screen in sql?
What is set serveroutput on?