version 11
arithmetic_expression [NOT] IN (subquery) |
arithmetic_expression [NOT] IN (arithmetic_expression, ..., arithmetic_expression)
説明
in_predicateは、arithmetic_expressionを比較して、値のリストにそれが含まれるか (またはNOTキーワードが渡されていれば含まれないか) をチェックするために使用します。比較に使用する値のリストは一連のarithmetic_expression、またはsubqueryの結果です。
例題
SELECT * FROM ORDERS WHERE order_id IN (10000, 10001, 10003, 10005); 参照
arithmetic_expression, predicate.