在线等,如何用select 语句查询某一列中值不为空的那些记录
如何用select 语句查询某一列中值不为空的那些记录
[解决办法]
select * from a where 某列 in no null
[解决办法]
- SQL code
select * from 表名 where len(isnull(列名,''))>0
发布时间: 2012-03-25 20:55:17 作者: rapoo
在线等,如何用select 语句查询某一列中值不为空的那些记录
如何用select 语句查询某一列中值不为空的那些记录
[解决办法]
select * from a where 某列 in no null
[解决办法]
select * from 表名 where len(isnull(列名,''))>0