如何在 MySQL 中选择没有 NULL 记录的数据?
要选择非空记录,请使用 IS NOT NULL 属性。让我们首先创建一个表 -
mysql> create table DemoTable1792 ( Name varchar(20) ); Query OK, 0 rows affected (0.00 sec)
使用插入命令在表中插入一些记录 -
mysql> insert into DemoTable1792 values('John Smith'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1792 values(NULL); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1792 values('David Miller'); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1792 values(NULL); Query OK, 1 row affected (0.00 sec)
使用选择语句从表中显示所有记录 -
mysql> select * from DemoTable1792;
这将产生以下输出 -
+--------------+ | Name | +--------------+ | John Smith | | NULL | | David Miller | | NULL | +--------------+ 4 rows in set (0.00 sec)
以下是选择不带有任何空记录的数据的查询 -
mysql> select * from DemoTable1792 where Name IS NOT NULL;
这将产生以下输出 -
+--------------+ | Name | +--------------+ | John Smith | | David Miller | +--------------+ 2 rows in set (0.00 sec)
广告