色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

mysql的replaceinto實例詳解

洪振霞2年前14瀏覽0評論

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();