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 do I use google cloud in sql?
Can a procedure in a package be overloaded?
What are %type and %rowtype for?
Is sql microsoft?
Is sql open source?
What is a unique key?
How to use sql statements in pl/sql?
What is dense_rank in sql?
What is data manipulation language?
What is sql engine in oracle?
Explain the savepoint statement.
Is sqlexception checked or unchecked?
What are the different set operators available in sql?
how to increment dates by 1 in mysql? : Sql dba
What is sqlite used for?