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
Explain what is a view?
Can I call a procedure inside a function?
what is meant by urlencode and urldocode? : Sql dba
What are the advantages of normalization?
Why is sql*loader direct path so fast?
What is a memo field?
How to convert comma separated string to array in pl/sql?
What is cost in sql execution plan?
Does pl/sql support create command?
What does the base_object_type column shows in the user.triggers data dictionary view?
How is a process of pl/sql compiled?
explain commit and rollback in mysql : sql dba
What are the benefits of pl sql?
Can a key be both primary and foreign?
What are the advantages of sql? Explain