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
What are different types of keys?
How do I run a pl sql program?
What do you mean by rowid?
Is big data nosql?
What is an escape character in sql?
What are sql triggers used for?
What are the commands used in sql?
what are properties of a transaction? : Sql dba
what are all the different normalizations? : Sql dba
What is a pl/sql block?
Could you please provide oca (oracle 10g) dumps for my certification ?
What is sql character function?
How can I make sql query run faster?
How to call shell script from pl sql procedure?
Is json a nosql?