is not null 和 <>' 有什么区别'

what#39;s the difference between is not null and lt;gt;#39; #39;(is not null 和 lt;gt; 有什么区别)
本文介绍了is not null 和 <>' 有什么区别'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

看我的例子,两个代码有什么区别?

Look my example, what's the difference between two codes?

Select name from customers where name is not null

Select name from customers where name <> ''

推荐答案

他们做完全不同的事情.

They do completely different things.

Select name from customers where name is not null

此选项选择在名称字段中具有值的任何客户.这些值可以包括"以及诸如山姆"、约翰琼斯"、漂亮的金发女孩"之类的内容.

This one selects any customer who has a value in the name field. Those values can include '' as well as things like 'Sam', 'John Jones', 'pretty blonde girl'.

Select name from customers where name <> ''

这将选择至少在 Sql Server 中不为空或空白的所有名称.其他数据库可能会以不同的方式处理此问题.它还排除 Null 的原因是 Null 不能作为比较的一部分,因为它的定义意味着我们不知道该字段的值是什么.

This will select all names that are not null or blank In Sql Server at least. Other databases may handle this differently. The reason why it also excludes Null is that Null cannot be part of a comparison since it by definition means we don't have a clue what the value of this field is.

如果您想同时返回真实姓名和空值,并且只排除空字符串.在 SQL Server 中,您将执行以下操作:

If you wanted to return both real names and null values and only exclude the empty strings. In SQl Server you would do:

Select name from customers where coalesce(name, 'Unknown') <>''

这篇关于is not null 和 &lt;&gt;' 有什么区别'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Creating table with T-SQL - can#39;t see created tables in Object explorer(使用 T-SQL 创建表 - 在对象资源管理器中看不到创建的表)
How to check if VARCHAR strings are (not) hexadecimal?(如何检查 VARCHAR 字符串是否为(非)十六进制?)
Arithmetic overflow error converting IDENTITY to data type int(将 IDENTITY 转换为数据类型 int 的算术溢出错误)
Where clause if there are multiple of the same ID(如果有多个相同的 ID,Where 子句)
Azure SQL: Invalid Object Name using Powershell#39;s quot;Invoke-sqlcmdquot; on Adventureworks(Azure SQL:使用 Powershell 的“Invoke-sqlcmd的无效对象名称在 Adventureworks 上)
How to Convert Table Data into xml format using sql with multiple sub nodes(如何使用具有多个子节点的sql将表数据转换为xml格式)