如何使用Oracle查询将选定的查询数据导出到Excel文件?

问题描述 投票:0回答:3

我有一个生成特定日期报告的查询。 Oracle中有什么查询可以导出到excel吗?我不想手动导出它。我正在使用 oracle 开发者。

excel oracle-database export oracle-sqldeveloper
3个回答
4
投票

您需要使用

SPOOL
并且不能直接写入
.xls
文件,您需要将数据写入
.csv
文件并在
Excel
中打开它。

set sqlformat csv
spool d:\your_file.csv
select * from your_table;
spool off;

干杯!!


4
投票

如果您使用 Oracle SQL 开发者:

在 Oracle SQL Developer 中将查询输出导出到 Excel,无需假脱机:

Step 1: Run your query. To start, you'll need to run your query in SQL Developer. ...
Step 2: Open the Export Wizard. ...
Step 3: Select the Excel format and the location to export your file. ...
Step 4: Export the query output to Excel.

例如:

enter image description here

如果您不使用向导,则其他方法是使用以下命令:

@export on;
@export set CsvColumnDelimiter=";";
@export set ShowNullAs="";
@export set filename="/home/xxx.csv";


select * from XX_TABLE;

@export off;

0
投票

我已经这样做了,但我仍然找不到我已经保存了10次的文件

© www.soinside.com 2019 - 2024. All rights reserved.