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
How many databases can sql express handle?
Is sql database free?
What is oracle and pl sql?
How to avoid duplicate records in a query?
What is trigger in flip flop?
What does pl sql developer do?
what is myisam? : Sql dba
How do I view an execution plan in sql?
What is constant in pl sql?
What is scalar and vector?
how to fetch alternate records from a table? : Sql dba
What is meant by user defined function?
Can we write ddl statements in functions?
how to use 'mysql' to run sql statements? : Sql dba
what is an index? : Sql dba