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 / smriti
select s.name,s.sid from student s,level l
where s.sid=l.sid
and s.course=3
and l.level='freshman'
| Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
What are the events on which a database trigger can be based?
How does index help in query performance?
how can we optimize or increase the speed of a mysql select query? : Sql dba
What is record data type?
When sql appeared?
Are null values same as that of zero or a blank space?
What is sql architecture?
What is sqlcontext?
Is sql injection illegal?
What is crud diagram?
What is sql profiling in oracle?
What is the source code of a program?
How can the performance of a trigger be improved?
Any attempt to navigate programmatically to disabled form in a call_form stack is allowed?
What is the usage of nvl function?