Mysql on duplicate key update

问题:我的数据库表test 有三个字段,id int(10),name char(12), testts timestamp; 如果我要我update name的时候,其对应的testts 也更新为最新的时间戳,要怎么设置?

create table test{ id int(10) not null auto_increment, name char(12),testts timestamp}

insert into test('id','name','testts') values(1,'Lydia',current_timestamp());

insert into test ('id','name','testts') values(2,'Susan',current_timestamp()) on duplicate key update testts=current_timestamp();


当使用update id=1 的数据时,其对应的timets的值是不会改变的。但是在update id=2的数据时,对应的timets 的值会变更成最新的时间戳。
update test set name='Monica' where id=2;

on duplicate key update 如果有数据库中有要更新的数据,那么就更新数据库,如果没有的话就讲这条记录插入到数据库中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值