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
Can we enter data in a table in design view?
How insert into statements in sql?
what is not null constraint? : Sql dba
How can you load microsoft excel data into oracle? : aql loader
What is pivot in sql?
How to run pl/sql statements in sql*plus?
What is a dirty read sql?
Is inner join faster than left join?
What are tables in sql?
When can we use the where clause and the having clause?
What is sql not null constraint?
Can we use loop in sql?
Explain the purpose of %type and %rowtype data types with the example?
Name the different types of indexes in sql and define them.
What is sql*loader and what is it used for?