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 many types of sql are there?
What is the difference between pl and sql?
what is top in tsql? : Transact sql
What is pl sql collection?
What is auto increment feature in sql?
What is snowflake sql?
What is type and rowtype in pl sql?
What are the events on which a database trigger can be based?
What is full join?
How do you delete duplicates in sql query using rowid?
Is sqlite free?
Which is better cte or subquery?
How many parts of a pl sql block are optional?
Explain what is an index?
What are the two characteristics of a primary key?