sql语句中要查询一个字符串字段不为空怎么写

2024-12-03 08:48:35
推荐回答(5个)
回答1:

select *from 表名 where (shareUser is not null) or shareUser<>''

回答2:

不为空有2中 不是空值 is not null 不是空格 <>""

回答3:

SELECT * FROM `table` WHERE `str` IS NOT NULL AND `str` <> '';
不等于NULL AND 不等于 ‘’;

回答4:

SELECT name FROM users WHERE name is not null

回答5:

select 字段名 from 表名 where 字段名 is not null and 字段名 !=“";