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 / nagendra
select e.sid, e.name from student e, level d where e.course
= 3 and d.level = 'FISHERMAN'
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Is a secondary key the same as a foreign key?
Explain the insert into statements in sql?
Why do we need cursor in pl sql?
How do I view a procedure in sql?
What is the difference between microsoft sql and mysql?
What are the types of queries in sql?
Does sql backup shrink transaction log?
Explain the uses of database trigger.
How can you view the errors encountered in a trigger?
How do I save a stored procedure?
What are tables and fields?
How can I change database name in sql?
what is a foreign key ? : Sql dba
What is exit statement?
Which sql statement is used to return only different values?