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

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

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do I sort a table in sql?

587


What is mutating sql table?

596


How bulk collect improves performance?

566


what tools available for managing mysql server? : Sql dba

519


how can we know the count/number of elements of an array? : Sql dba

564






Can we create foreign key without primary key?

525


What does the acronym acid stand for in database management?

531


what is sql profiler? : Sql dba

578


i have some prob lem to tell me about my self in interview first round ...

1693


How do I find duplicates in the same column?

525


define data blocks ? : Sql dba

537


What is input buffer in sql*plus?

630


How is pl sql different from sql?

528


Is sqlite thread safe?

595


Whis is not false in primary key?

968