InterviewSolution
Saved Bookmarks
| 1. |
What is the facility that allows nesting one select statement into another?(a) nesting(b) binding(c) subquerying(d) encapsulating |
|
Answer» The correct choice is (c) subquerying Best explanation: 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. |
|