drlnsli18864734 2010-10-06 19:56
浏览 273
已采纳

删除SQLite中不在另一个表中的所有行

I have two tables (A and B).

I want to delete all the rows in Table B where B.1 isn't in Table A.2.

So I wrote this formula in sqlite:

DELETE FROM B 
WHERE 1 
IN 
 (SELECT * 
  FROM B 
  LEFT JOIN A 
  ON A.1=B.2 
  WHERE A.1 
  IS NULL)

But this returns this error:

only a single result allowed for a SELECT that is part of an expression

Could anyone give me a hand?

Thanks.

  • 写回答

2条回答 默认 最新

  • doujin4031 2010-10-06 20:03
    关注

    The issue for your example query is that an IN clause can not be used in conjunction with SELECT * when the SELECT * returns more than one column. You need to specify the column...

    NOT IN

    DELETE FROM B
     WHERE B.2 NOT IN (SELECT A.1
                         FROM A)
    

    NOT EXISTS

    DELETE FROM B
     WHERE NOT EXISTS (SELECT NULL
                         FROM A
                        WHERE A.1 = B.2)
    

    SQLite doesn't support JOINs in DELETE statements, but you could also use:

    DELETE FROM B
     WHERE B.2 IN (SELECT B.2
                     FROM B
                LEFT JOIN A ON A.1 = B.2
                    WHERE A.1 IS NULL)
    

    Conclusion:

    I don't have any performance statistics for SQLite, but the NOT EXISTS would be my choice because it returns true on the first time it's satisfied--very good for dealing with duplicates.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料