How to rearrange columns in Oracle SQL Developer script output The 2019 Stack Overflow...
How many people can fit inside Mordenkainen's Magnificent Mansion?
Finding the path in a graph from A to B then back to A with a minimum of shared edges
Windows 10: How to Lock (not sleep) laptop on lid close?
The variadic template constructor of my class cannot modify my class members, why is that so?
does high air pressure throw off wheel balance?
Wall plug outlet change
Who or what is the being for whom Being is a question for Heidegger?
What are these Gizmos at Izaña Atmospheric Research Center in Spain?
Didn't get enough time to take a Coding Test - what to do now?
Mortgage adviser recommends a longer term than necessary combined with overpayments
What LEGO pieces have "real-world" functionality?
Can the prologue be the backstory of your main character?
Derivation tree not rendering
Does Parliament hold absolute power in the UK?
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
Can a novice safely splice in wire to lengthen 5V charging cable?
What information about me do stores get via my credit card?
What do you call a plan that's an alternative plan in case your initial plan fails?
How does ice melt when immersed in water?
When did F become S in typeography, and why?
Program that generates brainfuck code that outputs given text
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
draw pill tablet capsule with tikz
Estimated State payment too big --> money back; + Trump TCJA --> unfair situation. Need help
How to rearrange columns in Oracle SQL Developer script output
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Oracle query against SQL Server database giving inconsistent resultsError AWR Operation failed: CATPROC not valid when creating database with dbcaSQL Developer: how to script output to query results gridConvert or open Oracle 7.3.x database in Oracle 11Full table scan even after adding indexHow to enable missing Tempspc column in Oracle explain planPrecision of NVARCHAR2 column is 1.5 times lower than displayed by desc commandHow to create Clustered and non clustered index in Oracle?Error ORA-00918 not raised as expected when using the FETCH commandORA-00955 Object name already exists when it actually doesn't
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
maybe this is an already answered question, but I am relatively new to Oracle DB and couldn't find my answer around the Internet.
So I have created a table in Oracle and when running the SELECT statement the output shows me columns like this:

Please if anyone can explain how to rearrange the columns so, the values from CITY column go under the City column, and the Customer_Name goes under that output column. Thanks in advance!
oracle oracle-12c oracle-sql-developer
New contributor
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
maybe this is an already answered question, but I am relatively new to Oracle DB and couldn't find my answer around the Internet.
So I have created a table in Oracle and when running the SELECT statement the output shows me columns like this:

Please if anyone can explain how to rearrange the columns so, the values from CITY column go under the City column, and the Customer_Name goes under that output column. Thanks in advance!
oracle oracle-12c oracle-sql-developer
New contributor
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
maybe this is an already answered question, but I am relatively new to Oracle DB and couldn't find my answer around the Internet.
So I have created a table in Oracle and when running the SELECT statement the output shows me columns like this:

Please if anyone can explain how to rearrange the columns so, the values from CITY column go under the City column, and the Customer_Name goes under that output column. Thanks in advance!
oracle oracle-12c oracle-sql-developer
New contributor
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
maybe this is an already answered question, but I am relatively new to Oracle DB and couldn't find my answer around the Internet.
So I have created a table in Oracle and when running the SELECT statement the output shows me columns like this:

Please if anyone can explain how to rearrange the columns so, the values from CITY column go under the City column, and the Customer_Name goes under that output column. Thanks in advance!
oracle oracle-12c oracle-sql-developer
oracle oracle-12c oracle-sql-developer
New contributor
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 10 mins ago
Bogdan LozevBogdan Lozev
11
11
New contributor
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Bogdan Lozev is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This is not an Oracle or SQL Developer problem.
The problem is the font you use. It is variable-width and there is just no way to properly align output with that. Use a fixed-width (monospaced) font and alignment just works out of the box.
https://en.wikipedia.org/wiki/List_of_monospaced_typefaces
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Bogdan Lozev is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f234745%2fhow-to-rearrange-columns-in-oracle-sql-developer-script-output%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is not an Oracle or SQL Developer problem.
The problem is the font you use. It is variable-width and there is just no way to properly align output with that. Use a fixed-width (monospaced) font and alignment just works out of the box.
https://en.wikipedia.org/wiki/List_of_monospaced_typefaces
add a comment |
This is not an Oracle or SQL Developer problem.
The problem is the font you use. It is variable-width and there is just no way to properly align output with that. Use a fixed-width (monospaced) font and alignment just works out of the box.
https://en.wikipedia.org/wiki/List_of_monospaced_typefaces
add a comment |
This is not an Oracle or SQL Developer problem.
The problem is the font you use. It is variable-width and there is just no way to properly align output with that. Use a fixed-width (monospaced) font and alignment just works out of the box.
https://en.wikipedia.org/wiki/List_of_monospaced_typefaces
This is not an Oracle or SQL Developer problem.
The problem is the font you use. It is variable-width and there is just no way to properly align output with that. Use a fixed-width (monospaced) font and alignment just works out of the box.
https://en.wikipedia.org/wiki/List_of_monospaced_typefaces
answered 3 mins ago
Balazs PappBalazs Papp
27.1k2931
27.1k2931
add a comment |
add a comment |
Bogdan Lozev is a new contributor. Be nice, and check out our Code of Conduct.
Bogdan Lozev is a new contributor. Be nice, and check out our Code of Conduct.
Bogdan Lozev is a new contributor. Be nice, and check out our Code of Conduct.
Bogdan Lozev is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f234745%2fhow-to-rearrange-columns-in-oracle-sql-developer-script-output%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown