I'm working in postgresql and I need to convert the date format in query itself,
in mysql there is option called DATE_FORMAT
and I can use a query like this:
Select DATE_FORMAT(date_time, '%b %e, %Y, %T') from table_name
is there any option in postgresql? Please let me know if any?