SQL fundamental question '!=' vs '<>' vs 'Not' [duplicate]
Possible Duplicate:
Testing for inequality in T-SQL
Hi,
does there any different to use the '!=' vs '<>' vs 'Not'?
which one will have the worst perfor开发者_JS百科mance
or it exist just because of the backward compatibility syntax?
NOT
does not always act the same!=
or<>
are identical, no deprecation mentioned.<>
is ISO though
AFAIK, if you want to check for NULL, you must use IS NOT
and not !=
or <>
精彩评论