在 MS 访问中排除空值的 select 查询是什么
what will be the select query for excluding empty values in ms access
我正在尝试
select * from table where Contact Is Not null
但它显示的值包括空值
你可以这样试试:
select * from table where Len([Contact] & "")>0
您的查询是正确的,但可能您的联系人列中的字符串长度为零。您可以使用
select * from table where len(Nz(Contact, '')) > 0
Nz
函数 returns 如果列为空则指定默认值。
我正在尝试
select * from table where Contact Is Not null
但它显示的值包括空值
你可以这样试试:
select * from table where Len([Contact] & "")>0
您的查询是正确的,但可能您的联系人列中的字符串长度为零。您可以使用
select * from table where len(Nz(Contact, '')) > 0
Nz
函数 returns 如果列为空则指定默认值。