I am writing some queries in Oracle SQL Developer with numbers that have many digits. It would be really helpful if in general, all numbers had the thousands separator standard with no decimals.
The current default setting is: 999999999999,00
I would like this setting: 999.999.999.999
(European group and decimal separator)
I know that I can change the format of numbers using to_char, and possibly other functions.
But I do not want to have to add a function for each field in the select statement. I want to know how to just change the default number setting in Oracle SQL developer and have this format used for all queries.
