mysql的replaceinto實例詳解?
1、首先判斷數據是否存在;
2、如果不存在,則插入;
3、如果存在,則更新。在SQL Server中可以這樣處理:if not exists (select 1 from t where id = 1)? insert into t(id, update_time) values(1, getdate()) else update t set update_time = getdate() where id = 1那么 mysql 中如何實現這樣的邏輯呢?MySQL 中有更簡單的方法: replace intoreplace into t(id, update_time) values(1, now());或replace into t(id, update_time) select 1, now();