PostgresQL ANY / SOME Operator ( IN vs ANY )

PHOTO EMBED

Tue Feb 02 2021 17:36:37 GMT+0000 (Coordinated Universal Time)

Saved by @mvieira

x <> ANY (a,b,c) 
Code language: HTML, XML (xml)


is equivalent to

x <> a OR <> b OR x <> c
content_copyCOPY

https://www.postgresqltutorial.com/postgresql-any/