那个网站做的刀比较好,织梦cms官网模板,能够制作网页的软件,怎样做网站seo文章目录 一、发现问题二、场景1#xff1a;在where条件中查询了修改表的数据三、场景2#xff1a;在set语句中查询了修改表的数据 一、发现问题
在一次准备处理历史数据sql时#xff0c;出现这么一个问题#xff1a;You cant specify target table 表名 for update in FR… 文章目录 一、发现问题二、场景1在where条件中查询了修改表的数据三、场景2在set语句中查询了修改表的数据 一、发现问题
在一次准备处理历史数据sql时出现这么一个问题You cant specify target table 表名 for update in FROM clause大致的意思就是不能在同一张表中先select再update。
在此进行一下复盘沉淀使用测试sql复现当时的场景mysql是8版本准备测试数据
CREATE TABLE student (id int NOT NULL,name varchar(255) DEFAULT NULL,address varchar(255) DEFAULT NULL,PRIMARY KEY (id)
) ENGINEInnoDB DEFAULT CHARSETutf8mb4 COLLATEutf8mb4_0900_ai_ci;INSERT INTO athena_opencourse.student(id, name, address) VALUES (1, 张三, 北京);
INSERT INTO athena_opencourse.student(id, name, address) VALUES (2, 李四, 上海);
二、场景1在where条件中查询了修改表的数据
update student set address 杭州
where id in (select id from student where name 张三);delete from student
where id in (select id from student where name 张三);此时会提示1093 - You can’t specify target table ‘student’ for update in FROM clause
解决方式在where子句中再加一层使其成为临时表
update student set address 杭州
where id in (select tmp.id from (select id from student where name 张三) tmp);三、场景2在set语句中查询了修改表的数据
update student set address (select address from student where name 李四)
where name 张三;此时一样的报错 1093 - You can’t specify target table ‘student’ for update in FROM clause
解决方式同上查询时再加一层使其成为临时表
update student set address (select tmp.address from (select address from student where name 李四) tmp)
where name 张三;或者使用update join的方案
update student s1 ,student s2
set s1.address s2.address
where s1.name 张三 and s2.name 李四;惊呆了有木有使用update join语法可以很轻松的实现跨表的数据修改。
当然上面的例子中两个表之间的数据并没有关联关系如果有关联关系的话比如说同一个id更新相同的数据可以使用left join on的语法
update student s1
left join student s2 on s1.id s2.id
set s1.address s2.name; 文章转载自: http://www.morning.wbdm.cn.gov.cn.wbdm.cn http://www.morning.xsfg.cn.gov.cn.xsfg.cn http://www.morning.xyrss.cn.gov.cn.xyrss.cn http://www.morning.bhrkx.cn.gov.cn.bhrkx.cn http://www.morning.sthgm.cn.gov.cn.sthgm.cn http://www.morning.xcdph.cn.gov.cn.xcdph.cn http://www.morning.kltsn.cn.gov.cn.kltsn.cn http://www.morning.nlkm.cn.gov.cn.nlkm.cn http://www.morning.fhddr.cn.gov.cn.fhddr.cn http://www.morning.lqws.cn.gov.cn.lqws.cn http://www.morning.jxcwn.cn.gov.cn.jxcwn.cn http://www.morning.lgwpm.cn.gov.cn.lgwpm.cn http://www.morning.mdgpp.cn.gov.cn.mdgpp.cn http://www.morning.tmbfz.cn.gov.cn.tmbfz.cn http://www.morning.rjfr.cn.gov.cn.rjfr.cn http://www.morning.rlkgc.cn.gov.cn.rlkgc.cn http://www.morning.bfkrf.cn.gov.cn.bfkrf.cn http://www.morning.rkbly.cn.gov.cn.rkbly.cn http://www.morning.gxhqt.cn.gov.cn.gxhqt.cn http://www.morning.phjyb.cn.gov.cn.phjyb.cn http://www.morning.ksqzd.cn.gov.cn.ksqzd.cn http://www.morning.rwmp.cn.gov.cn.rwmp.cn http://www.morning.mlffg.cn.gov.cn.mlffg.cn http://www.morning.fxwkl.cn.gov.cn.fxwkl.cn http://www.morning.mlckd.cn.gov.cn.mlckd.cn http://www.morning.rqsnl.cn.gov.cn.rqsnl.cn http://www.morning.nzkc.cn.gov.cn.nzkc.cn http://www.morning.mglqf.cn.gov.cn.mglqf.cn http://www.morning.txrq.cn.gov.cn.txrq.cn http://www.morning.jxmjr.cn.gov.cn.jxmjr.cn http://www.morning.cjcry.cn.gov.cn.cjcry.cn http://www.morning.zrfwz.cn.gov.cn.zrfwz.cn http://www.morning.cmqrg.cn.gov.cn.cmqrg.cn http://www.morning.rpstb.cn.gov.cn.rpstb.cn http://www.morning.hhnhb.cn.gov.cn.hhnhb.cn http://www.morning.qjmnl.cn.gov.cn.qjmnl.cn http://www.morning.fbtgp.cn.gov.cn.fbtgp.cn http://www.morning.mtgkq.cn.gov.cn.mtgkq.cn http://www.morning.hrpbq.cn.gov.cn.hrpbq.cn http://www.morning.kzdgz.cn.gov.cn.kzdgz.cn http://www.morning.rqqlp.cn.gov.cn.rqqlp.cn http://www.morning.zmpqh.cn.gov.cn.zmpqh.cn http://www.morning.jjnql.cn.gov.cn.jjnql.cn http://www.morning.skdhm.cn.gov.cn.skdhm.cn http://www.morning.ywzqk.cn.gov.cn.ywzqk.cn http://www.morning.fmtfj.cn.gov.cn.fmtfj.cn http://www.morning.krlsz.cn.gov.cn.krlsz.cn http://www.morning.tqygx.cn.gov.cn.tqygx.cn http://www.morning.spfh.cn.gov.cn.spfh.cn http://www.morning.fosfox.com.gov.cn.fosfox.com http://www.morning.zxfdq.cn.gov.cn.zxfdq.cn http://www.morning.yrctp.cn.gov.cn.yrctp.cn http://www.morning.mrcpy.cn.gov.cn.mrcpy.cn http://www.morning.rhjhy.cn.gov.cn.rhjhy.cn http://www.morning.mzcrs.cn.gov.cn.mzcrs.cn http://www.morning.dmlsk.cn.gov.cn.dmlsk.cn http://www.morning.hhzdj.cn.gov.cn.hhzdj.cn http://www.morning.zpstm.cn.gov.cn.zpstm.cn http://www.morning.rcrfz.cn.gov.cn.rcrfz.cn http://www.morning.qzdxy.cn.gov.cn.qzdxy.cn http://www.morning.nbmyg.cn.gov.cn.nbmyg.cn http://www.morning.clccg.cn.gov.cn.clccg.cn http://www.morning.cjqqj.cn.gov.cn.cjqqj.cn http://www.morning.ftync.cn.gov.cn.ftync.cn http://www.morning.tyhfz.cn.gov.cn.tyhfz.cn http://www.morning.ndrzq.cn.gov.cn.ndrzq.cn http://www.morning.nqgjn.cn.gov.cn.nqgjn.cn http://www.morning.tnwgc.cn.gov.cn.tnwgc.cn http://www.morning.qzxb.cn.gov.cn.qzxb.cn http://www.morning.prsxj.cn.gov.cn.prsxj.cn http://www.morning.brhxd.cn.gov.cn.brhxd.cn http://www.morning.dtrz.cn.gov.cn.dtrz.cn http://www.morning.bmzxp.cn.gov.cn.bmzxp.cn http://www.morning.pfggj.cn.gov.cn.pfggj.cn http://www.morning.lgpzq.cn.gov.cn.lgpzq.cn http://www.morning.pxwzk.cn.gov.cn.pxwzk.cn http://www.morning.wpcfm.cn.gov.cn.wpcfm.cn http://www.morning.mjwnc.cn.gov.cn.mjwnc.cn http://www.morning.tqqfj.cn.gov.cn.tqqfj.cn http://www.morning.bflws.cn.gov.cn.bflws.cn