Are SQL ANY and SOME keywords synonyms in all SQL dialects?
问题 In Postgres, ANY and SOME are synonyms when used on the right hand side of a predicate expression. For example, these are the same: column = ANY (SELECT ...) column = SOME (SELECT ...) This is documented here: http://www.postgresql.org/docs/9.1/static/functions-subquery.html#FUNCTIONS-SUBQUERY-ANY-SOME I have observed ANY and SOME to be supported by at least these SQL DBMSs: DB2 Derby H2 HSQLDB Ingres MySQL Oracle Postgres SQL Server Sybase ASE Sybase SQL Anywhere Can I safely assume that all