Vidyalelo
MySQL · Q190

MySQL

Programming · MySQL · question 190

Q190

The ALL subquery performs the operation . . . . . . . .

A.
row
B.
column
Answer
C.
table
D.
database

Answer: Option B

Solution

Answer: Option B
Solution:
This question is about how the ALL subquery works in MySQL.
Think of a subquery as a smaller query inside a bigger one. It gets data, and the main query uses that data.

ALL is a keyword used to compare a value with every row returned by the subquery.

So, ALL works with rows of data.

Therefore, the answer is Option A: row.