MySQL实现当前数据表的所有时间都增加或减少指定的时间间隔(推荐)
程序员文章站
2023-11-24 15:18:04
date_add() 函数向日期添加指定的时间间隔。
当前表所有数据都往后增加一天时间:
update act_blocknum set createtime...
date_add() 函数向日期添加指定的时间间隔。
当前表所有数据都往后增加一天时间:
update act_blocknum set createtime = date_add(createtime, interval 1 day);
当前表所有数据都往前减少一天时间:
update act_blocknum set createtime = date_add(createtime, interval -1 day);
为了防止数据库查询报空异常,当查询结果返回为整型的时候可以和0进行比较如果为空,则返回一个0给客户,否则返回改查询的结果值,sql如下
select ifnull(sum(num),0) from dpevent.act_blocknum where createtime between #starttime# and #endtime#; mysql ifnull(expr1,expr2)
如果expr1不是null,ifnull()返回expr1,否则它返回expr2。ifnull()返回一个数字或字符串值,取决于它被使用的上下文环境。类似的有
isnull(expr)
如expr为null,那么isnull()的返回值为1,否则返回值为0。
update语句更新多个字段的值
update @a set c1=b.c1 ,c2=b.c2,c3=b.c3 from @a a,@b b where a.id=2 and b.id=6 update a set (a.a2,a.a3) =(select b.b2,b.b3 from b where b.b1= a.a1 and a.a3=100 )
以上所述是小编给大家介绍的mysql实现当前数据表的所有时间都增加或减少指定的时间间隔,希望对大家有所帮助