如何使用 SQLPLUS 假脱机到 CSV 格式的文件?

2021-12-01 00:00:00 csv sql oracle sqlplus

我想将一些查询提取为 CSV 输出格式.不幸的是,我不能使用任何花哨的 SQL 客户端或任何语言来做到这一点.我必须使用 SQLPLUS.

I want to extract some queries to a CSV output format. Unfortunately, I can't use any fancy SQL client or any language to do it. I must use SQLPLUS.

我该怎么做?

推荐答案

如果你使用的是 12.2,你可以简单地说

If you are using 12.2, you can simply say

set markup csv on
spool myfile.csv

相关文章