,怎么用select 语句查询某一列中值不为空的那些记录

在线等,如何用select 语句查询某一列中值不为空的那些记录
如何用select 语句查询某一列中值不为空的那些记录

------解决方案--------------------
select * from a where 某列 in no null
------解决方案--------------------
SQL code
select * from 表名 where len(isnull(列名,''))>0