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 / nagendra
select e.sid, e.name from student e, level d where e.course
= 3 and d.level = 'FISHERMAN'
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is pl sql and why it is used for?
Is sql developer case sensitive?
What is pl sql architecture?
What are the two characteristics of a primary key?
Mention what plvcmt and plvrb does in pl/sql?
what are properties of a transaction? : Sql dba
What types of commands can be executed in sql*plus?
What is a design view?
How does a self join work?
What does select top 1 do in sql?
What are the two parts of design view?
How many rows can sqlite handle?
what is sub-query? : Transact sql
Which kind of parameters cannot have a default value in pl sql?
What is input buffer in sql*plus?