MySQL 如何选择没有空记录的数据
使用 IS NOT NULL 属性选择非空记录。让我们先创建一个表 −
mysql> create table DemoTable1792
(
Name varchar(20)
);
Query OK, 0 rows affected (0.00 sec)
使用 insert 命令将一些记录插入表中 −
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)
使用 select 语句显示表中的所有记录 −
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)
阅读更多:MySQL 教程