mysql 非空语法_MySQL查询空字段或非空字段(is null和not null)_MySQL
MySQL查询空字段或非空字段(is null和not null)_MySQL现在我们先来把test表中的一条记录的birth字段设置为空。mysql> update test set t_birth=null where t_id=1;Query OK, 1 row affected (0.02 sec)Rows matched: 1 Changed: 1 Warnings: 0OK,...