In postgres I have a table with date column. Now postgres allows me to write date in Y-m-d format. But I need date in d/m/Y format. How to change it?
When I do:
Use the to_char function with your date as follows:
select to_char(date_column1, 'Mon/DD/YYYY');