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
name 3 ways to get an accurate count of the number of records in a table? : Sql dba
Is primary key always clustered index?
how many groups of data types? : Sql dba
How to return multiple rows from the stored procedure?
What is a mutating table and a constraining table?
What is an inner join sql?
What is a nested table in word?
Explain the difference between drop and truncate commands in sql?
what is heap table? : Sql dba
What is a ddl command?
Does truncate need commit?
When a dml statement is executed, in which cursor attributes, the outcome of the statement is saved?
What is string join?
What is sql integrity?
What is sql mysql pl sql oracle?