mysql 插入更新一條sql 搞定

插入數據時,咱們常常會遇到這樣的狀況:一、首先判斷數據是否存在;二、若是不存在,則插入;三、若是存在,則更新。mysql 在SQL Server中能夠這樣處理:sql if not exists (select 1 from t where id = 1)? insert into t(id, update_time) values(1, getdate()) else update t set
相關文章
相關標籤/搜索