Standards for Date/Time addition?

前端 未结 8 1212
自闭症患者
自闭症患者 2021-02-02 15:40

I\'m looking for standards for Date/Time addition. I haven\'t been able to find any. In particular I\'m hoping to find a spec that defines what should happen when you add a mont

8条回答
  •  忘了有多久
    2021-02-02 16:09

    Try the mysql date function :

    SELECT ADDDATE('2011-01-31', INTERVAL 1 MONTH) // 2011-02-28

    Input date with leap year

    SELECT ADDDATE('2012-01-31', INTERVAL 1 MONTH) // 2012-02-29

提交回复
热议问题