Which of the following is not a difference between EXISTS and ANY/ALL?
EXISTS is more powerful than ANY/ALL.
All queries represented by ANY/ALL can be obtained by EXISTS operator.
All queries represented by EXISTS may not be possible with ANY/ALL operator.
ALL returns TRUE only if all the results of a subquery meet the condition, while EXISTS takes a subquery as an argument and returns TRUE if the subquery returns anything.
Replacing EXISTS with ANY produces an identical result.