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条)

报告相同问题?

悬赏问题

  • ¥15 thinkphp6配合social login单点登录问题
  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch