I know there some functions for date/time and number formatting but is there a way to store and read date and number columns with a custom format?
Ex.:
In my country DD/MM/YYYY is a common date format but if I want to store it in a mysql or postgres database I must store it as YYYY-MM-DD.
I've read about some configuration directives in postgresql that permits storing dates / numbers in specifc formats.
I think it would be a lot faster to store and read these values without need of conversion routines.