InterviewSolution
Saved Bookmarks
| 1. |
What is a subquery?(a) A subquery is a select-from-where expression that is nested within another query(b) A subquery is any query that is nested within another query(c) A subquery is a relation that is externally specified which can be used to handle data in queries(d) A subquery is a condition that excludes all the invalid tuples from the database |
|
Answer» Correct answer is (a) A subquery is a select-from-where expression that is nested within another query Explanation: A subquery is a select-from-where expression that is nested within another query. Common uses for sub-queries are to perform tests for set membership, make set comparisons etc. |
|