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 the difference between left join and right join?
What is difference between cursor and trigger?
Can we call dml statement in function?
What is the difference between function, procedure and package in pl/sql?
What is use of package in pl sql?
explain what is mysql? : Sql dba
what is sql profiler? : Sql dba
what is transaction? : Sql dba
Is mariadb a nosql database?
What is sql and explain its components?
What is db journal file?
what are date and time intervals? : Sql dba
How to make a copy values from one column to another in sql?
What is a database trigger?
What is %rowtype in pl sql?