在 Oracle SQL Devleoper 中,当我复制结果时,如何也复制列标题?
在 Oracle SQL Devleoper 中,当我复制结果时,如何也复制列标题?
例如,我不想要:
doucette matthew xona.com etc.
我想要:
lastname firstname url etc.
-------- --------- -------- ----
doucette matthew xona.com etc.
In Oracle SQL Devleoper, when I copy the results, how can I copy the column headings too?
For example, I don't want:
doucette matthew xona.com etc.
I want:
lastname firstname url etc.
-------- --------- -------- ----
doucette matthew xona.com etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我在 https://forums.oracle.com/forums/thread 上找到了答案。 jspa?threadID=2162606。选择结果 (Ctrl +A) 后,使用 Ctrl + Shift + C 进行复制,这也会复制标题。
问候
I found the answer on https://forums.oracle.com/forums/thread.jspa?threadID=2162606. Once you have selected the results (Ctrl +A) then use Ctrl + Shift + C to copy, this will copy the headers aswell.
Regards
在 SQL Developer 3.0.04 中,运行查询后,右键单击结果网格并选择导出...
完成对话框如下.....
选择下一步,然后完成并然后粘贴到目标程序中
In SQL Developer 3.0.04, once you have run your query, right click on the results grid and select export....
Complete the dialogue box as follows.....
Select next, then finish and then paste into the destination program
如果您使用“运行脚本”(F5) 执行查询,那么您的输出将显示在查询结果窗口中,其中包含您可以复制的列标题。也就是说,如果我正确理解你想要什么。
If you execute your query using "Run Script" (F5) then your output gets shown in the query results window with column headers that you can copy. That is, if I'm understanding what you want correctly.