1

我正在为 oracle 编写一个批处理脚本,并希望我的输出为 txt 文件,列以逗号分隔。

select 
quote_id ,
coverage_amount from Customer;

但它是以制表符分隔的。如何让它们用逗号分隔。请帮忙

4

1 回答 1

3
select 
quote_id || ', ' || coverage_amount 
from Customer;
于 2012-05-16T09:51:49.313 回答