Google News
logo
MySQL - Quiz(MCQ)
What allows nesting one select statement into another?
A)
subquerying
B)
binding
C)
nesting
D)
encapsulating

Correct Answer :   subquerying


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.

Advertisement