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 / dharmendra singh
select s.name,
c.SID
from Student s, level c
where s.sid = c.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 the max nvarchar size?
how to analyze tables with 'mysqlcheck'? : Sql dba
Is sql dba a good career? : SQL DBA
Explain the commit statement.
How can you load multi line records? : aql loader
What is schema in sql?
What plvcmt and plvrb does in pl/sql?
Explain the working of foreign key?
How many clustered indexes can be created on a table?
how to enter characters as hex numbers? : Sql dba
how to fetch common records from two tables? : Sql dba
Can variables be used in sql statements?
how can we destroy the cookie? : Sql dba
What mean sql?
Explain how can you save or place your msg in a table?