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
What is the difference between inner join and outer join?
what is a stored procedure? : Sql dba
What are all different types of collation sensitivity?
What is a left join?
How can you create an empty table from an existing table?
Name some usages of database trigger?
What is a temporal table?
What is meant by truncate in sql?
How do I run a sql query?
what is cursor. write example of it. What are the attributes of cursor.
Why do we need view in sql?
Mention what plvcmt and plvrb does in pl/sql?
What is the difference between sql and mysql?
what are wild cards used in database for pattern matching ? : Sql dba
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?