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
How do you exit in sql?
what is a database transaction? : Sql dba
Mention what does plv msg allows you to do?
Explain what is rdbms?
What is compiled query?
how many groups of data types? : Sql dba
Is time a data type in sql?
What are the types of keys?
What are sql functions? Describe in brief different types of sql functions?
How do I remove all records from a table?
What is the difference between sql, mysql and sql server?
Explain the working of foreign key?
What are primary key and foreign key and how they work?
What is recursive join in sql?
What are local and global Indexes and where they are useful.