文章 2024-10-17 来自:开发者社区

MySQL异常一之: You can‘t specify target table for update in FROM clause解决办法

前言 总结SQL中的bug问题 一、bug描述 You can't specify target table 'CUP_TEST_CLASS_LIST' for update in FROM clause 翻译一下:不能在FROM子句中指定更新的目标表’CUP_TEST_CLASS_LIST’ 白话一下:不能先select出同一表中的某些值&#...

文章 2023-11-16 来自:开发者社区

MYSQL 不允许在子查询的同时删除原表数据的解决方法 specify target table

MySql报错: You can't specify target table 'table namemysql中不能这么用. (等待mysql升级吧)错误提示就是说.不能先select出同一表中的某些值.再update这个表(在同一语句中) 替换方案: create table tmp as select min(id) as col1 from blur_article group by t....

文章 2023-11-09 来自:开发者社区

MySQL语句执行报错You can‘t specify target table for update in FROM clause

含义You can’t specify target table for update in FROM clause:不能在同一表中查询的数据作为同一表的更新数据。例子update t_blog set views = ( select views from t_blog where id = ' 35' + 1 ) where id = ' 35'这句语句是想要找出t_blog表中的vi...

MySQL语句执行报错You can‘t specify target table for update in FROM clause
文章 2023-10-15 来自:开发者社区

【MySQL异常】1093 - You can‘t specify target table ‘daily_job‘ for update in FROM clause

一、背景描述通过sql语句想把这个表里的数据查询出来,然后根据查询出来的id把同一张表里的数据删除,如下是会报错的sql语句:DELETE FROM daily_job WHERE id IN ( SELECT id FROM daily_job WHERE create_user = '***' );在执行 mysql 语句时,出现 1093 - You can't specify...

文章 2023-07-21 来自:开发者社区

【问题处理】—— Mysql : You can‘t specify target table for update in FROM clause

项目场景:Mysql环境,业务操作报错问题描述错误提示:You can‘t specify target table for update in FROM clause原因分析:根据Mysql官方文档的描述:You cannot update a table and select directly from the same table in a subquery. You can work a....

【问题处理】—— Mysql : You can‘t specify target table for update in FROM clause
文章 2022-10-18 来自:开发者社区

mysql操作中 出现You can‘t specify target table for update in FROM clause错误的解决方法

 这个错误实际上也不能称之为咱们sql语句写的不行,实际上是我们在一些细节上没有遵循mysql的语法规范。问题所在:我们一个sql语句中先select这个表,然后再update这个表的内容。错误示范:UPDATE StuCose SET Grade=60 WHERE Sno IN( SELECT Sno FROM stucose WHER...

mysql操作中 出现You can‘t specify target table for update in FROM clause错误的解决方法
文章 2022-06-13 来自:开发者社区

Mysql - You can't specify target table '表名' for update in FROM clause 错误解决办法

背景在MySQL中,写SQL语句的时候 ,可能会遇到 You can't specify target table '表名' for update in FROM clause 这样的错误错误含义它的意思是说,不能先 select 出同一表中的某些值,再 update 这个表(在同一语句中),即不能依据某字段值做判断再来更新某字段的值。解决问题将select出的结果再通过中间表select一遍,....

Mysql - You can't specify target table '表名' for update in FROM clause 错误解决办法
文章 2022-03-04 来自:开发者社区

mysql delete where in,mysql delete where not in,You can't specify target table 'member_extend' for u

今天在项目中需要清理某个表的垃圾数据,通过delete from table where field in(子查询)失败,特来研究下删除下in和not in的问题(1).普通in/not in正确DELETE FROM member_extend WHERE uid IN ( 4, 5 ) DELETE FROM member_extend WHERE uid NOT IN ( 4, 5 )...

文章 2022-02-17 来自:开发者社区

MySQL 语法问题:You can‘t specify target table ‘xxx‘ for update in FROM clause. 原因及解决方法

           报错信息如下: [Code: 1093, SQL State: HY000] You can’t specify target table ‘bd_bankaccbas’ for update in FROM clause译文: 不能在 FROM 子句中指定目标表 ‘bd_bankaccbas’ 进行更新。有问题的....

文章 2022-02-17 来自:开发者社区

mysql 中 You can't specify target table for update in FROM clause错误

mysql 中 You can't specify target table for update in FROM clause错误 mysql中You can't specify target table <tbl> for update in FROM clause错误的意思是说,不能先select出同一表中的某些值,再update这个表(在同一语句中)。 update issu....

本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。

产品推荐

数据库

数据库领域前沿技术分享与交流

+关注
相关镜像