ALL & ANY array expressions
<> ALL & = ANY array expressions
Description
Grammar Syntax
expression operator ANY (array expression)
expression operator ALL (array expression)Sample Source Patterns
Input Code:
SELECT some_column <> ALL (ARRAY[1, 2, 3])
FROM some_table;
SELECT *
FROM someTable
WHERE column_name = ANY (ARRAY[1, 2, 3]);Output Code:
Known Issues
Related EWIs
Last updated
