Answers for "postgres query for timestamp range"

SQL
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
0

timestamp(0) postgresql

(now())::timestamp(0))
Posted by: Guest on January-09-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language