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 / guest
SELECT S.Name,S.SID
FROM Student S, Level L
WHERE S.SID=L.SID
AND L.level='freshman'
AND S.Course=3
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Explain the purpose of %type and %rowtype data types?
Is mariadb nosql?
what are the advantages a stored procedure? : Sql dba
What is normalization sql?
Is oracle sql free?
What is database white box testing and black box testing?
What is the difference between sql and isql*plus?
How do I edit a trigger in sql developer?
what is text? : Sql dba
What is the main difference between sql and pl/sql?
why does the selected column have to be in the group by clause or part of an aggregate function? : Sql dba
Why function is used in sql?
Which is faster truncate or drop?
Why we use pl sql?
Explian rowid, rownum? What are the psoducolumns we have?