In Oracle SQL Devleoper, when I copy the results, how can I copy the column headings too?

Xonatron picture Xonatron · Nov 3, 2011 · Viewed 46.8k times · Source

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.

Answer

Marius Botha picture Marius Botha · Oct 16, 2012

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