Answers for "DATE_SUB postgres"

SQL
0

DATE_SUB postgres

-- MySQL
DATE_SUB(NOW(), INTERVAL '1 YEAR')
-- PostgreSQL
(NOW() - INTERVAL '1 YEAR')
Posted by: Guest on May-21-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language