sql-server – `SET ANSI_NULLS OFF`做什么?

前端之家收集整理的这篇文章主要介绍了sql-server – `SET ANSI_NULLS OFF`做什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
SET ANSI_NULLS OFF有什么作用?

解决方法

From MSDN:

The sql-92 standard requires that an equals (=) or not equal to (<>) comparison against a null value evaluates to FALSE.

When SET ANSI_NULLS is ON,a SELECT statement using WHERE column_name = NULL returns zero rows even if there are null values in column_name. A SELECT statement using WHERE column_name <> NULL returns zero rows even if there are non-null values in column_name.

When SET ANSI_NULLS is OFF,the Equals (=) and Not Equal To (<>) comparison operators do not follow the sql-92 standard. A SELECT statement using WHERE column_name = NULL returns the rows with null values in column_name. A SELECT statement using WHERE column_name <> NULL returns the rows with non-null values in the column. In addition,a SELECT statement using WHERE column_name <> XYZ_value returns all rows that are not XYZ_value and that are not NULL.

原文链接:https://www.f2er.com/mssql/79319.html

猜你在找的MsSQL相关文章