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 / debanjan rudra
select stud.name NAME,
stud.sid SID
from student stud,
level lvl
where stud.course = 3
and lvl.level = 'freshman';
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
what is cursor. write example of it. What are the attributes of cursor.
What is pl sql and why it is used for?
What are the popular database management systems in the it industry?
How to avoid duplicate records in a query?
explain access control lists. : Sql dba
Which data type is a composite type?
What is trigger and stored procedure in sql?
Can we perform dml in function?
How to fetch values from testtable1 that are not in testtable2 without using not keyword?
How do you update f as m and m as f from the below table testtable?
Does truncate table reset auto increment?
What is recursive join in sql?
Define a temp table?
What is the purpose of using pl/sql?
Explain locks? : Transact sql