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
What is trigger types in sql?
What is rename in sql?
Does truncate require commit?
How do I view tables in sql developer?
What are aggregate functions in sql?
Why indexing is needed?
What is meant by user defined function?
Can one improve the performance of sql*loader? : aql loader
Why are sql stored procedures used?
Can pl sql procedure have a return statement?
Can I copy :old and :new pseudo-records in/to an oracle stored procedure?
what is blob? : Sql dba
what are the differences among rownum, rank and dense_rank? : Sql dba
Can we perform dml on view?
What is recursive join in sql?