Answers for "how to get months from start month to end month continously in postgres"

SQL
0

select current_timestamp - interval '3 days';

SELECT current_timestamp - interval "3 days";
-- 2020-06-24 08:25:31.759993 America/Los_Angeles
Posted by: Guest on October-22-2020
0

substract variable amount of minutes from timestamp postgresql

SELECT p.date_time + number_of_seconds * INTERVAL '1 second'
    FROM photo p 
    WHERE p.id = 1;
Posted by: Guest on October-16-2020

Code answers related to "how to get months from start month to end month continously in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language