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

What are the set operators in sql?

564


when MSQL8.0 is in market

1605


Can we use ddl statements in stored procedure sql server?

524


What is pragma in pl sql?

609


When sql appeared?

627






How to rename a table?

565


When is the update_statistics command used?

576


How to test for null values?

613


What is the difference between database trigger and stored procedure?

561


What is %s in sql?

573


How you improve the performance of sql*loader? : aql loader

584


what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba

579


Explian rowid, rownum? What are the psoducolumns we have?

578


What is numeric function sql?

547


Does user triggers have entry for trigger with compilation errors?

606