一:查询字符串类型的字段的值不为空的SQL:
[sql] view plaincopy
- select * from TB_CMS_FLGTINFO_A t where (t.fsta is not null and t.fsta <>‘ ‘);
主:上面的TB_CMS_FLGTINFO_A是表名,fsta是表中的字段
二:查询字符串类型的字段的值为空的SQL:
[sql] view plaincopy
- select * from TB_CMS_FLGTINFO_A t where (t.fsta is null or t.fsta =‘ ‘);
主:上面的TB_CMS_FLGTINFO_A是表名,fsta是表中的字段
时间: 2024-10-06 13:38:34