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
Are dml statements autocommit?
write an sql query to get third maximum salary of an employee from a table named employee_table. : Sql dba
Name some usages of database trigger?
What is forward declaration in pl sql?
What are the types of operators available in sql?
What is trigger in sql and its types?
What does the sign mean in sql?
What is sap sql anywhere?
what are the differences between char and nchar? : Sql dba
What is the need of merge statement?
Is record in oracle pl sql?
What is parallel hint?
Why cross join is used?
What is sql indexing?
What does t sql mean?