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
What is the primary use of normalization?
How do I find duplicates in a single column in sql?
Which version of sql do I have?
How do you exit in sql?
How to run sql statements with oracle sql developer?
What is anonymous block in sql?
how to shut down the server with 'mysqladmin'? : Sql dba
How do sql databases work?
Is pl sql a scripting language?
What are the uses of sysdate and user keywords?
How can get second highest salary in sql?
how tsql statements can be written and submitted to the database engine? : Transact sql
How can triggers be used for the table auditing?
what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba
Explain what is sql*plus?