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 / raksha
select s.sid,s.name
from student s,
level l
where s.sid=l.sid
and s.course = 3
and l.level = 'Freshman'
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
explain about mysql and its features. : Sql dba
Which are the different character-manipulation functions in sql?
Enlist the advantages of sql.
Can we use joins in subquery?
How do I install sql?
what does the t-sql command ident_incr does? : Transact sql
What is use of trigger?
What is pls_integer in pl sql?
How to use transactions efficiently : transact sql
Is keyword pl sql?
Is drop table faster than truncate?
What is sqlerrd?
How do I start sql profiler?
What is sql indexing?
What is pl sql architecture?