0
What is use of any and all functions in sql
use of Any and All functions
1 Answer
+ 3
The ANY operator returns true if any of the subquery values meet the condition.
The ALL operator returns true if all of the subquery values meet the condition.
For detailed info:
https://www.w3schools.com/sql/sql_any_all.asp