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

Can a select statement fire a trigger?

658


Can a key be both primary and foreign?

508


Does sqlite need a server?

539


What is auto increment feature in sql?

616


Explain correlated query work?

589






Which table is left in left join?

521


What is a schema sql?

529


how to use in conditions? : Sql dba

509


how can we repair a mysql table? : Sql dba

538


What is the difference between left join and right join?

500


Why does sql need a server?

561


What does over partition by mean in sql?

530


What is the difference between sql and mysql?

551


Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)

535


What does select * from mean in sql?

1986