Answers for "extract time from timestamp postgresql"

SQL
3

postgresql today - 1 year

select now() - INTERVAL '1 YEAR';
Posted by: Guest on September-18-2020
0

postgres extract date from timestamp

SELECT DATE(SUBSTRING('2018-07-25 10:30:30' FROM 1 FOR 10));
Posted by: Guest on February-24-2021
0

postgres extract date from timestamp

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

Code answers related to "extract time from timestamp postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language