InterviewSolution
Saved Bookmarks
| 1. |
The facility that allows nesting one select statement into another is ______________(a) nesting(b) binding(c) subquerying(d) encapsulating |
|
Answer» Correct option is (c) subquerying To explain: The ‘subquerying’ support provided by MySQL is a capability that allows writing one ‘SELECT’ statement within parentheses and nesting within another. This allows logically selecting content from tables. |
|