postgres delete from where date is greater than specific date code example
Example: postgres delete from where date is greater than specific date
DELETE FROM table WHERE update_date >= '2021-02-01'::date;
DELETE FROM table WHERE update_date >= '2021-02-01'::date;