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 / dharmendra singh
select s.name,
c.SID
from Student s, level c
where s.sid = c.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 I add a database to sql?
What is structural independence and why is it important?
What are different types of sql commands?
What is sql server and ase?
What is difference between sql and mysql?
what is online transaction processing (oltp)? : Sql dba
What is dcl in sql?
What are records give examples?
How do you create a unique index?
What is difference between hql and sql?
How are functions and procedures called in PL/SQL?
Why do we use subquery?
Can we delete column in sql?
What are all different types of collation sensitivity?
What is sql dialect?