搜索

首页  >  问答  >  正文

php - 这条sql语句错在什么地方?

DELETE from li_make_code  where user_id in 
(    
    select user_id from li_make_code a 
        where 
            not exists (select 1 from li_user b  where b.id=a.user_id)
) ;
[Err] 1093 - You can't specify target table 'li_make_code' for update in FROM clause

这个语句应该怎么改合适

某草草某草草2771 天前684

全部回复(4)我来回复

  • phpcn_u1582

    phpcn_u15822017-06-05 11:11:23

    mysql中FROM子句中无法指定更新目标表错误

    回复
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-06-05 11:11:23

    你是想把user_idli_user表中找不到的给删了吧,为什么不直接用:

    delete from li_make_code where user_id not in 
        (select distinct id from li_user)

    回复
    0
  • 習慣沉默

    習慣沉默2017-06-05 11:11:23

    你子查询和删除操作的是同一个表,不能同时查询和更新同一个表。
    更改为join方式即可。

    回复
    0
  • PHPz

    PHPz2017-06-05 11:11:23

    从 li_make_code 中删除 user_id in ( SELECT user_id from
    (从 li_make_code a 中选择不存在的 user_id(从 li_user b 中选择 1 其中 b.id=a.user_id)) bb)

    回复
    0
  • 取消回复