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 / smriti

select s.name,s.sid from student s,level l
where s.sid=l.sid
and s.course=3
and l.level='freshman'

Is This Answer Correct ?    21 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where is pl sql used?

516


What is data profiling in sql?

511


What does the file extension accdb stand for?

545


How do you declare a variable in pl sql?

533


explain primary keys and auto increment fields in mysql : sql dba

520






what is 'mysqlcheck'? : Sql dba

573


what does it mean to have quoted_identifier on? What are the implications of having it off? : Sql dba

525


how to show all tables with 'mysql'? : Sql dba

604


What is your daily office routine?

1808


What is data modelling in sql?

521


How many sql are there?

510


how to use regular expression in pattern match conditions? : Sql dba

522


Can a commit statement be executed as part of a trigger?

600


Where is sql database stored?

518


How to use transactions efficiently : transact sql

540