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 information schema in sql?
Can a commit statement be executed as part of a trigger?
What is count * in sql?
How do I run sql?
What does bitemporal mean?
What is flag in sql?
What is sqlcommand?
How do you modify a column in sql?
Define concurrency control. : Transact sql
What is program debugging?
Enlist the data types that can be used in pl/sql?
What is the use of %rowtype?
Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?
What is minus?
Why is pl sql needed?