当前位置:主页 > 数据库 > MsSql >

mssql查找备注(text,ntext)类型字段为空的方法

时间:2021-09-15 10:43:35 | 栏目:MsSql | 点击:

解决办法有很多:

1 . select * from 表 where datalength(字段)=0

2.  select * from 表 where cast(字段 as varchar(100))=''

3. select * from 表 where 字段 like ''

您可能感兴趣的文章:

相关文章