InterviewSolution
Saved Bookmarks
| 1. |
What allows nesting one select statement into another?(a) nesting(b) binding(c) subquerying(d) encapsulating |
|
Answer» Correct answer is (c) subquerying The 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. |
|