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

SELECT Student.name, Student.SID
FROM Student, Level
WHERE Student.SID = Level.SID
AND Level.Level = "freshman"
AND Student.Course = 3;

Is This Answer Correct ?    6 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to create a test table in your mysql server? : Sql dba

487


Why do we use joins?

556


What is function and procedure in pl sql?

515


Can we rollback delete command?

508


What is the difference between in and between in sql?

569






What type of database is sql?

611


Can we join tables without foreign key?

518


Can a foreign key be null?

579


what are the differences between char and varchar? : Sql dba

517


what is the difference between delete and truncate statement in sql? : Sql dba

539


What is schema in sql example?

595


what are null values? : Sql dba

537


Is ms sql traffic encrypted?

493


What is sql procedures and functions?

522


What is nosql vs sql?

553