0
我想知道這個操作員做什麼,我沒有找到任何有關它的信息。 這將是很高興看到使用的一些例子。
tsql!>操作符有什麼作用?
例如:這些查詢返回相同的結果(1):
select 1 where 1 !> 1;
select 1 where 1 = 1;
但沒有什麼是從這些查詢返回:
set ansi_nulls off;
select 1 where null !> null;
set ansi_nulls on;
select 1 where null !> null;
[TSQL比較運算符](http://msdn.microsoft.com/en-us/library/ms188074.aspx) – 2012-08-03 11:38:10