mysql 添加的如果重复则采用更新语句


insert into s0_gdebt (cust_id, cust_gdebt, oper, oper_time)
values (cust_id, _cust_gdebt, in_oper, in_oper_time)
ON DUPLICATE KEY UPDATE s0_gdebt.cust_id=cust_id;

你可能感兴趣的:(mysql 添加的如果重复则采用更新语句)