搬瓦工VPSMySQL判断字段是否为Null查询mysql数据库表中字段为null的记录: select * from 表名 where 字段名 is null 示例: select * from student where address is null 查询mysql数据库表中字段不为null的记录: select * from 表名 where 字段名 is not null 示例: selec...赞 (0)2020-12-04 23:42:51阅读(2485)标签:mysql / null / 判断 / 字段 / 是否