Answers for "extract date from now postgresql"

SQL
0

postgres extract date from timestamp

SELECT DATE(column_name) FROM table_name;
Posted by: Guest on February-24-2021
0

postgres extract date from timestamp

SELECT '2018-07-25 10:30:30'::TIMESTAMP::DATE;
Posted by: Guest on February-24-2021

Code answers related to "extract date from now postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language