如何在 Oracle SQL Developer 中将查询结果导出到 csv?

How to export query result to csv in Oracle SQL Developer?(如何在 Oracle SQL Developer 中将查询结果导出到 csv?)
本文介绍了如何在 Oracle SQL Developer 中将查询结果导出到 csv?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的是 Oracle SQL Developer 3.0.试图弄清楚如何将查询结果导出到文本文件(最好是 CSV).右键单击查询结果窗口没有给我任何导出选项.

I'm using Oracle SQL Developer 3.0. Trying to figure out how to export a query result to a text file (preferably CSV). Right clicking on the query results window doesn't give me any export options.

推荐答案

我使用的版本

2012 年 5 月 5 日更新

Jeff Smith 拥有 blogged 显示,我认为是从 SQL 获取 CSV 输出的优越方法开发商.Jeff的方法如下图方法1所示:

Jeff Smith has blogged showing, what I believe is the superior method to get CSV output from SQL Developer. Jeff's method is shown as Method 1 below:

方法一

将注释 /*csv*/ 添加到您的 SQL 查询并将查询作为脚本运行(使用 F5 或工作表工具栏上的第二个执行按钮)

Add the comment /*csv*/ to your SQL query and run the query as a script (using F5 or the 2nd execution button on the worksheet toolbar)

就是这样.

方法二

运行查询

右键单击并选择卸载.

更新.在Sql Developer Version 3.0.04 unload 已经改为export感谢 Janis Peisenieks 指出这一点

Update. In Sql Developer Version 3.0.04 unload has been changed to export Thanks to Janis Peisenieks for pointing this out

为 SQL Developer 版本 3.0.04 修改屏幕截图

从格式下拉列表中选择 CSV

并按照屏幕上的其余说明进行操作.

这篇关于如何在 Oracle SQL Developer 中将查询结果导出到 csv?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Oracle 12c SQL: Missing column Headers in result(Oracle 12c SQL:结果中缺少列标题)
SQL query to find the number of customers who shopped for 3 consecutive days in month of January 2020(查询2020年1月连续购物3天的客户数量)
How to get top 10 data weekly (This week, Previous week, Last month, 2 months ago, 3 month ago)(如何每周获取前十大数据(本周、前一周、上个月、2个月前、3个月前))
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)