首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

mssql怎么查询某个字段为空

2013-12-19 
mssql如何查询某个字段为空表字段为istitle varchar 类型的 我这样写查不出来东西 select top 3 * from qT

mssql如何查询某个字段为空
表字段为  istitle varchar 类型的 

我这样写查不出来东西 select top 3 * from qTcms_Comics where istitle !=''

istitle 字段里面确实什么都没有。 我查询出来的显示表结构。但是没数据。。。
[解决办法]
try this,


select top 3 * 
 from qTcms_Comics 
 where istitle='' or istitle is null or ltrim(rtrim(istitle))=''

[解决办法]
试试这个:
select top 3 * from qTcms_Comics 
where isnull(rtrim(ltrim(istitle)),'') !=''

热点排行