好吧,例如,我有一个光标
select col1, col2, col3, col4, colN from cursor into into array thecursor
我当前的光标是光标
我得到了它的所有数据信息,包括空、空信息
ia txt 怎么能这样:
col1, col2, col3, col4, colN
a,b,c,d,e
1,2,3,4,5
a1,b1,,d1,e1
11,12,13,14,
,bb,cc,dd,ee
所以你可以在行看到
a1,b1,,d1,e1
我在 b1 和 d1 之间有一个空值,所以你可以看到我在行有一个空值
`11,12,13,14,`(here null value)
我在最后一行有一个空值
(here null value), cc,dd,ee
所以我想要这个最终的txt文件
col1, col2, col3, col4, colN
a,b,c,d,e
1,2,3,4,5
a1,b1,,d1,e1
11,12,13,14,
,bb,cc,dd,ee
**I need this was dynamic i refer it receive a cursor and do it with any cursor