码迷,mamicode.com
首页 > 数据库 > 详细

How to perform a SQL query for fields that are null (or not null)

时间:2015-06-18 22:03:54      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

 

Okay, maybe this is lame, but when I‘ve been away from writing SQL database queries for a while I can never remember how to search for database table fields that are either NULL, or NOT NULL. I always try to use the = operator or something else.

So, for you Al, here‘s how to perform a SQL query and find all records where a field in a database table is NULL:

SELECT * FROM foo WHERE bar IS NULL;

  

And here‘s how to perform a SQL query showing all records in a database table where a field is NOT NULL:

SELECT * FROM foo WHERE bar IS NOT NULL;

  

This works with every database I‘ve tried, including MySQL, Oracle, Postgres, and SQL Server.

How to perform a SQL query for fields that are null (or not null)

标签:

原文地址:http://www.cnblogs.com/hephec/p/4586890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!