程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql insert update語句

mysql insert update語句

編輯:MySQL綜合教程


mysql insert update語句   執行這條語句,會幫你自動判斷數據庫中是否有與你要插入的記錄重復主鍵, 有則更新,沒有就插入   格式如:insert into tablename(字段1,字段2) select * from  (select ? 字段1,? 字段2,.... from dual) as b on duplicate key update字段1=b.字段1,....   www.2cto.com   例子:insert into trtb_dim_top_cats   (cid,parent_cid,name,is_parent,status,sort_order,lev)  select * from (select ? cid,? parent_cid,? name,? is_parent,? status,? sort_order,?
lev from dual)    as b on duplicate key update    cid=b.cid,parent_cid=b.parent_cid,name=b.name,is_parent=b.is_parent,status=b.status,
sort_order=b.sort_order,lev=b.lev  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved