标签: sql oracle comma batch-file csv
我正在为oracle编写一个批处理脚本,并希望我的输出在txt文件中,列以逗号分隔。
select quote_id , coverage_amount from Customer;
但它以制表符分隔。如何用逗号分隔它们。请帮忙
答案 0 :(得分:3)
select quote_id || ', ' || coverage_amount from Customer;