我有一个光标例如
select col1, col2, col3, col4, colN from cursor into into array thecursor
我当前的光标是光标
我得到了所有数据信息,包括null,null信息
我怎么能像它一样:
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
答案 0 :(得分:2)
您是否看过COPY TO命令?尝试:
COPY TO <filename> TYPE DELIMITED WITH ""
答案 1 :(得分:2)
您可以直接将数据移动到文本文件而不是光标,如下所示:
select col1, col2, col3, col4, colN from table to file test.txt