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
Can we use join in subquery?
What is the difference between nvl function, ifnull function, and isnull function?
what are the 'mysql' command line arguments? : Sql dba
how many tables will create when we create table, what are they? : Sql dba
when is the use of update_statistics command? : Sql dba
what is msql? : Sql dba
How to run sql commands in sql*plus?
Which join is like an inner join?
What is data control language (dcl)?
What is sql server and ase?
What is the difference between an inner join and an outer join?
What is the difference between alter trigger and drop trigger statements?
what is offset-fetch filter in tsql? : Transact sql
Mention what does plvtab enables you to do when you showthe contents of pl/sql tables?
what are different types of collation sensitivity? : Sql dba