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 bitemporal narrowing?
Can instead of triggers be used to fire once for each statement on a view?
how to enter numeric values as hex numbers? : Sql dba
What is over () in sql?
what are the non-standard sql commands supported by 'mysql'? : Sql dba
How can we optimize a sql query?
Which is better cte or subquery?
What is a trigger in sql?
What are sql built in functions?
How to order siblings in oracle hierarchy queries?
Do triggers have restrictions on the usage of large datatypes, such as long and long raw?
What is an intersect?
What is restrict in sql?
What is before and after trigger?
what is the stuff function and how does it differ from the replace function? : Sql dba