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 / supreeth
SELECT Student.name, Student.SID
FROM Student, Level
WHERE Student.SID = Level.SID
AND Level.Level = "freshman"
AND Student.Course = 3;
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Differentiate between % rowtype and type record.
How do I remove sql developer from windows 10?
Mention what problem one might face while writing log information to a data-base table in pl/sql?
How can a function retun more than one value in oracle with proper example?
What is the difference between unique and primary key constraints?
What is query execution plan in sql?
What does dml mean?
explain mysql aggregate functions. : Sql dba
How to use boolean type in select statement?
What is anonymous block in sql?
How to write a query to show the details of a student from students table whose
Mention what are the benefits of pl/sql packages?
What are its different types of dbms?
What are the key differences between SQL and PL SQL?
Is it possible to update views?