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

select s.sid,s.name
from student s,
level l
where s.sid=l.sid
and s.course = 3
and l.level = 'Freshman'

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is there a need for sqlcode and sqlerrm variables?

585


How do I add a database to sql?

576


What are the differences between implicit and explicit cursors?

517


What are crud methods?

549


Is inner join same as self join?

578






What is the difference between inner join and natural join?

508


What is replication id?

518


Why do we use function in pl sql?

553


what is the difference difference between procedure and packages

9213


Explain how you can copy a file to file content and file to pl/sql table in advance pl/sql?

545


What are the types of functions in sql?

567


Which are the different character-manipulation functions in sql?

545


What does the file extension accdb stand for?

545


what is the difference between join and union? : Sql dba

545


what are the features and advantages of object-oriented programming? : Sql dba

542