Answers for "postgresql search last 6 months"

SQL
1

last 6 months postgresql

CURRENT_DATE - INTERVAL '6 months'
Posted by: Guest on April-01-2020
0

postgres select from last 3 months

SELECT * from table where date >  CURRENT_DATE - INTERVAL '3 months'
Posted by: Guest on October-15-2020

Code answers related to "postgresql search last 6 months"

Code answers related to "SQL"

Browse Popular Code Answers by Language