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

select e.sid, e.name from student e, level d where e.course
= 3 and d.level = 'FISHERMAN'

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is natural join in sql?

528


Enlist the data types that can be used in pl/sql?

565


what is the difference between mysql_fetch_object and mysql_fetch_array? : Sql dba

544


Are views faster than queries?

531


What are properties of the transaction?

552






what is innodb? : Sql dba

569


Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?

709


Can a table contain multiple primary key’s?

614


What are types of joins?

527


What is the difference between sum and count in sql?

513


Determine if oracle date is on a weekend?

547


what happens if null values are involved in expressions? : Sql dba

557


What is left inner join in sql?

508


What is trigger explain with example?

541


how to run 'mysql' commands from a batch file? : Sql dba

603