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 / raksha
select s.sid,s.name
from student s,
level l
where s.sid=l.sid
and s.course = 3
and l.level = 'Freshman'
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Does mysql_real_escape_string prevent sql injection?
what is sub-query? : Transact sql
What are the types of triggers in sql?
How do I run a pl sql procedure in sql developer?
Does group by remove duplicates?
Mention what plvcmt and plvrb does in pl/sql?
define join and explain different type of joins? : Sql dba
What is basic structure of pl sql?
What is data modelling in sql?
what is user defined functions? : Sql dba
How to order siblings in oracle hierarchy queries?
How can you select unique records from a table?
How many functions are there in sql?
What jobs use sql?
what are the advantages and disadvantages of views in a database? : Sql dba