InterviewSolution
Saved Bookmarks
| 1. |
Explain What Is A Subquery ? |
|
Answer» A SUBQUERY is a SQL QUERY within another query. It is a subset of a Select statement whose return values are used in FILTERING the conditions of the MAIN query. A Subquery is a SQL query within another query. It is a subset of a Select statement whose return values are used in filtering the conditions of the main query. |
|