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 do you understand by case manipulation functions?

539


What are the advantages of sql? Explain

639


What are primary key and foreign key and how they work?

540


How to return an array from java to pl/sql?

582


What is trigger and types?

550






Which are the different character-manipulation functions in sql?

540


What is sql clause?

535


how to convert numeric values to character strings? : Sql dba

564


What are predefined functions in sql?

524


What is update query?

539


How can I change database name in sql?

517


Where is pl sql used?

511


What is aggregate function in sql?

526


What is synchronized subquery?

583


How do you update f as m and m as f from the below table testtable?

1056