1z0-071 Exam QuestionsBrowse all questions from this exam

1z0-071 Exam - Question 214


Which three are true about subqueries? (Choose three.)

Show Answer
Correct Answer: BDF

A subquery can be used in various places within a SQL statement, including in a HAVING clause and a WHERE clause. Thus, options D and F are correct. The usage of < ANY returns true if the argument is less than the highest value returned by the subquery, making option B correct. Therefore, the correct answers are B, D, and F.

Discussion

8 comments
Sign in to comment
WingLOptions: CDF
Jul 12, 2023

I think CDF correct

XTIMONOptions: BDF
Sep 10, 2023

BDF is correct

yaya32Options: BDF
Jan 25, 2024

BDF is correct

AssomOptions: BDF
Nov 1, 2023

I think BDF, because the answer C is the definition of < All not < Any. If it less than the lowest value, so, it less than all values from the subquery.

lucemqyOptions: BDF
Nov 15, 2023

BDF is correct

zangado
Dec 4, 2023

Both B and C are correct. < ANY means less than ANY, no matter highest or lowest. Another doubtful question

ArslanAltaf
May 16, 2024

No < Any will take the highest value to compare and >any will take the lowest.

yaya32Options: BDF
Jan 9, 2024

BDF for me

ArslanAltafOptions: BDF
Jun 12, 2024

"x > ANY (...)": The value must be greater than the smallest value in the list to evaluate to TRUE. "x < ANY (...)": The value must be smaller than the biggest value in the list to evaluate to TRUE. BDF is correct.