Oracle数据库sql语句空字段筛选方法,sql语句值为空判断方法

2021-12-01 15:20:37 浏览数 (1)

通过 is nullis not null 可以来判断空字段。

空字段筛选过程演示: select image_src, pk_group from sm_appmenuitem where image_src is null;

非空字段筛选过程演示: select image_src, pk_group from sm_appmenuitem where image_src is not null;

0 人点赞