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 nvl?
How can a pl sql block be executed?
What is transaction control language (tcl)?
What are tables and fields in the database?
Explain what is a database?
In a distributed database system, can we execute two queries simultaneously?
What is the least restrictive isolation level? : Transact sql
What are two statement types in sql?
What is a null value?
Why is normalization important?
How much does sql certification cost?
how to check server status with 'mysqladmin'? : Sql dba
Can you join a table to itself?
Which tcp/ip port does sql server run?
Write a sql query to find the names of employees that begin with ‘a’?