MySQL在日期中添加天数 [英] MySQL add days to a date

查看:259
本文介绍了MySQL在日期中添加天数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在MySQL中有一张表.将表中的当前日期值添加为2天的sql语句应该是什么?

I have a table in MySQL. What would be the sql statement look like to add say 2 days to the current date value in the table?

UPDATE classes 
SET 
date = date + 1
where id = 161

这会增加一秒钟的值,我不想更新时间,我想增加两天?

this adds one second to the value, i don't want to update the time, i want to add two days?

推荐答案

假定您的字段是date类型(或类似类型):

Assuming your field is a date type (or similar):

SELECT DATE_ADD(`your_field_name`, INTERVAL 2 DAY) 
FROM `table_name`;

在您提供的示例中,它看起来可能像这样:

With the example you've provided it could look like this:

UPDATE classes 
SET `date` = DATE_ADD(`date` , INTERVAL 2 DAY)
WHERE `id` = 161;

这种方法也可以与datetime一起使用.

This approach works with datetime , too.

这篇关于MySQL在日期中添加天数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆