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

数据库 发布日期:2025/1/10 浏览次数:1

正在浏览:mssql查找备注(text,ntext)类型字段为空的方法
解决办法有很多:

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

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

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