2

好吧,例如,我有一个光标

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
4

2 回答 2

2

你看过 COPY TO 命令吗?尝试:

COPY TO <filename> TYPE DELIMITED WITH ""
于 2012-07-20T20:35:24.243 回答
2

您可以直接将数据移动到文本文件中,而不是光标,如下所示:

select col1, col2, col3, col4, colN from table to file test.txt

于 2012-07-24T15:55:40.657 回答