当前位置: 首页 >
2011年8月10日发布的所有文章
-
MySQL replace into
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 into replace into t(id, update_time) values(1, now()); 或 r ...