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 / ani
SELECT
S.Name
,S.SID
FROM Student S
INNER JOIN Level L ON S.SID=L.SID
WHERE S.Course=3 AND L.level='freshman'
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what is a cursor? : Sql dba
how can we destroy the cookie? : Sql dba
What is a pl/sql block?
Why is stored procedure faster than query?
What do we need to check in database testing?
Which join is like an inner join?
what is primary key? : Sql dba
how to load data files into tables with 'mysqlimport'? : Sql dba
What is faster join or subquery?
What type of join is sql join?
What is record type in pl sql?
How does stored procedure reduce network traffic?
what is a record in a database ? : Sql dba
Which operator is used in query for pattern matching?
Write the alter statement to enable all the triggers on the t.students table.