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 / smriti
select s.name,s.sid from student s,level l
where s.sid=l.sid
and s.course=3
and l.level='freshman'
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
Why left join is used in sql?
how to do backup entire database? : Transact sql
What does t sql mean?
How to write pl sql program in mysql command prompt?
explain the difference between delete , truncate and drop commands? : Sql dba
What is the difference between a procedure and a function?
What is a variable in sql?
How can you tell the difference between an index and a view?
what is table? : Sql dba
What is the difference between delete and truncate statement in sql?
What is oracle sql developer?
What do you know by pl/sql cursors?
What does select top 1 do in sql?
How many parts of a pl sql block are optional?
What is a schema sql?