expression [ NOT ] IN { ( subquery ) | ( expression2 ) | ( value-expression1, ... ) }
An IN search condition, without the NOT keyword, evaluates according to the following rules:
The NOT keyword interchanges TRUE and FALSE.
The search condition expression IN ( values ) is equivalent to expression = ANY ( values ).
The search condition expression NOT IN ( values ) is equivalent to expression <> ALL ( values ).
The value-expression arguments are expressions that take on a single value, which may be a string, a number, a date, or any other SQL data type.
Send feedback about this page via email or DocCommentXchange | Copyright © 2008, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.0 |