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 / raksha
select s.sid,s.name
from student s,
level l
where s.sid=l.sid
and s.course = 3
and l.level = 'Freshman'
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is database migration?
How do I order by ascending in sql?
What are the parameter modes supported by pl/sql?
Does a user_objects view have an entry for a trigger?
What is forward declaration in pl sql?
Can we use views in stored procedure?
How can you know that statistics should be updated?
What is having clause in sql?
what are tables and fields? : Sql dba
How do you update f as m and m as f from the below table testtable?
What is data manipulation language?
How do I create an index in word?
What is schema in sql?
What is cost in sql execution plan?
What is the difference between functions, procedures, and packages in pl/sql?