/* syntax version 1 */ /* postgres can not */ PRAGMA AnsiInForEmptyOrNullableItemsCollections; SELECT 1 IN {2, 3, null}, -- Nothing 2 IN {2, 3, null}, -- true? (1, 2) IN {(1, null), (2, 1)}, -- Nothing (1, 2) IN {(1, null), (1, 2)}, -- true? ;