标签: sql oracle select null
我有100列的表
select * from <table> where id = 'xxxx'
我得到的结果很好,但是有些列是我不需要的空值。如何过滤我的select *以仅返回具有值的列。
id col1 col2 col3 col4 col...100 xxxx aaaa bbbb null null
仅输出具有id值的列
id col1 col2 xxxx aaaa bbbb