sharpest

1.不为空

select * from table where id <> "";

select * from table where id != "";

 

select * from table where id not is null

2.为空

select * from table where id ="";

select * from table where isNull(id);

 

select * from table where id is null

具体情况具体分析,如果字段是char或者varchar类型的,使用id=""可以的;

如果字段是int类型的,使用isNull会好些。

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-03
  • 2021-12-10
猜你喜欢
  • 2021-12-10
  • 2022-12-23
  • 2022-01-13
  • 2021-12-31
  • 2021-12-04
  • 2021-06-23
  • 2021-06-15
相关资源
相似解决方案