zqifa

mysql text字段判断是否为空

mysql text字段判断是否为空

mysql text字段为空
select * from `tableName` where `textField` is null or `textField` = \'\';

mysql text字段不为空
select * from `tableName` where `textField` is not null AND `textField` != \'\';

分类:

技术点:

相关文章:

  • 2022-01-07
  • 2021-12-10
  • 2021-11-23
  • 2022-01-07
  • 2021-12-10
  • 2021-05-26
  • 2022-12-23
猜你喜欢
  • 2021-12-10
  • 2021-11-02
  • 2022-02-28
  • 2021-10-29
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案