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 / debanjan rudra
select stud.name NAME,
stud.sid SID
from student stud,
level lvl
where stud.course = 3
and lvl.level = 'freshman';
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Which join is like inner join?
Where do we use pl sql?
What is the use of partition by in sql?
How do I save the results of sql query in a file?
How to move files from one directory to another in pl sql?
what is meant by nl2br()? : Sql dba
What are the types of keys?
what are ddl statements in mysql? : Sql dba
what is the difference difference between procedure and packages
Is nosql relational?
how to create a new view in mysql? : Sql dba
Explain what is table in a database?
How do you exit in sql?
how to get a list of columns in an existing table? : Sql dba
How many unique keys can a table have?