How to display timestamp (date & time) in specific format using SQL SELECT in PostgreSQL

1 Answer

0 votes
SELECT first_name, to_char(date_created, 'yyyy-mm-dd hh:mi:ss') as current_date
FROM "table_name"

--- first_name   current_date
--- Avi          2020-05-08 05:35:46

 



answered May 9, 2020 by avibootz

Related questions

1 answer 262 views
1 answer 285 views
1 answer 285 views
2 answers 321 views
...