mysql insert update语句
程序员文章站
2022-04-25 08:56:35
...
执行这条语句,会帮你自动判断数据库中是否有与你要插入的记录重复主键,有则更新,没有就插入格式如:insert into tablename(字
执行这条语句,会帮你自动判断数据库中是否有与你要插入的记录重复主键,有则更新,没有就插入
格式如:insert into tablename(字段1,,字段2,。。。。) select * from (select ? 字段1,? 字段2,.... from dual) as b on duplicate key update 字段1=b.字段1,....
例子: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
推荐阅读
-
MYSQL中获取得最后一条记录的语句
-
详解一条sql语句在mysql中是如何执行的
-
mysql LOAD语句批量录入数据
-
MySQL 通过索引优化含ORDER BY的语句
-
SQL Server存储过程生成insert语句实例
-
Mysql优化order by语句的方法详解
-
mysql中错误:1093-You can’t specify target table for update in FROM clause的解决方法
-
MySQL 创建主键,外键和复合主键的语句
-
INSERT INTO SELECT语句与SELECT INTO FROM语句的一些区别
-
MySQL执行update语句和原数据相同会再次执行吗