zoukankan      html  css  js  c++  java
  • 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 for update in FROM clause错误的意思是说,不能先select出同一表中的某些值,再update这个表(在同一语句中)。 例如下面这个sql:


    delete from tbl where id in 
    (
            select max(id) from tbl a where EXISTS
            (
                select 1 from tbl b where a.tac=b.tac group by tac HAVING count(1)>1
            )
            group by tac
    )

    改写成下面就行了(就是where条件再嵌套一层查询):

    代码如下:

    delete from tbl where id in 
    (
        select a.id from 
        (
            select max(id) id from tbl a where EXISTS
            (
                select 1 from tbl b where a.tac=b.tac group by tac HAVING count(1)>1
            )
            group by tac
        ) a
    )

  • 相关阅读:
    逆向
    BUUCTF
    学校健康系统自动打卡
    SQL数据库操作练习(3)
    简单尝试UPX脱壳
    网站WAF-安全狗的绕过(一)
    【题解】担心
    【题解】树上的鼠
    【题解】CF1299B Aerodynamic
    【题解】等你哈苏德
  • 原文地址:https://www.cnblogs.com/yiyanwei/p/15791656.html
Copyright © 2011-2022 走看看