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

select e.sid, e.name from student e, level d where e.course
= 3 and d.level = 'FISHERMAN'

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

table structure: ---------------- col1 col2 ----- ----- 01-mar-2012 11:12:46 01-mar-2012 11:12:10 01-mar-2012 11:12:46 01-mar-2012 11:11:23 Write a query to display the result as shown below: col1 col2 ----- ----- 01-mar-2012 11:12:46 01-mar-2012 11:12:10

3350


What is the current version of postgresql?

560


Explain the savepoint statement.

604


What are dml commands?

529


How do you explain an index?

792






what is the difference between sql and t-sql? : Transact sql

607


What is database sql?

544


How do I filter in sql profiler?

538


What is java sql package?

540


What is left inner join in sql?

519


How can you fetch common records from two tables?

594


What is a pl/sql block?

595


Why cross join is used?

637


Why is a primary key important?

547


How does one load ebcdic data? : aql loader

654