如何 "insert" table 中比当前日期早 750 天的日期?

How to "insert" a date in the table which is 750 days before current date?

我想在当前日期之前 750 天的 table 中插入日期。

使用两个简单的函数:

CURDATE()

DATE_ADD()

参考:MySQL Date and Time functions MySQL DATE_ADD() Function

create table dtTable (col datetime);
insert into dtTable values
(curdate()),
(date_add(curdate(), interval -750 day));

DB fiddle