I have tried both
1) smthng = any(select id from exmplTable)
2) smthng in (select id from exmplTable)
and I am getting the same results for my data.
Is there any difference for the two expresions?
I have tried both
1) smthng = any(select id from exmplTable)
2) smthng in (select id from exmplTable)
and I am getting the same results for my data.
Is there any difference for the two expresions?
This may be an edge case but:
will produce: ERROR: syntax error at or near ")"
but
Will return an empty result set
No, in these variants are same:
You can see - the execution plans are same too: