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 / vishu
Select Name,SID from Student
where SID in(Select SID from level where level='freshman')
and Course=3;
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Is postgresql a nosql database?
What is information schema in sql?
Difference between global and parameter variables?
How you improve the performance of sql*loader? : aql loader
how to create a new view in mysql? : Sql dba
How much does a sql dba make? : SQL DBA
What pl/sql package consists of?
When to use inner join and left join?
What is a unique key?
What is sql entity?
What is $$ in sql?
What is before trigger?
What do you mean by stored procedures?
What is the purpose of cursors in pl/sql?
Explain foreign key in sql?