I have a table with a column of type timestamp without time zone.
I want to select that column with the mmm yyyy format – for example, “Mar 2011”. How to f
mmm yyyy
DateAndTime Reformat:
SELECT *, to_char( last_update, 'DD-MON-YYYY') as re_format from actor;
DEMO: