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 are the usages of sql?

564


What are character functions?

628


What are the two types of exceptions in pl/sql?

542


Why use stored procedures?

568


What is scalar function?

566






When do we use triggers?

583


What is union and union all keyword in sql?

565


How to write html code in pl sql?

580


How do you rank data in sql?

515


Is time a data type in sql?

478


What are the two different parts of the pl/sql packages?

559


Show the cursor attributes of pl/sql.

608


Differentiate between % rowtype and type record.

731


Explain what is sql*plus?

670


Which function is used to return remainder in a division operator in sql?

580