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

SELECT S.Name,S.SID
FROM Student S, Level L
WHERE S.SID=L.SID
AND L.level='freshman'
AND S.Course=3

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between sql and mysql?

561


What is the difference between jpql and sql?

555


What is bulk collect in pl sql?

535


How much ram can sql express use?

515


How do I use google cloud in sql?

544






What is trigger in flip flop?

518


what is a record in a database ? : Sql dba

568


What are the most important characteristics of pl/sql?

580


What are the different types of a subquery?

525


What is sql prepared statement?

548


Why do we need cursor in pl sql?

651


What are its different types of dbms?

542


Can we create foreign key without primary key?

538


What is basic structure of pl sql?

508


What is compound trigger?

562