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
How do you declare a constant?
What is dynamic query?
What are tables and fields?
Can we rollback after truncate?
Can a composite key be null?
What is sql query limit?
how to use myisamchk to check or repair myisam tables? : Sql dba
how would you write a query to select all teams that won either 2, 4, 6 or 8 games? : Sql dba
What is attribute indicator in pl sql?
Is sql injection illegal?
How can you tell the difference between an index and a view?
what is dbms? : Sql dba
What normalization means?
Is sql a backend language?
What is procedure explain with example?