How do I 'subtract' sql tables?

后端 未结 14 1995
死守一世寂寞
死守一世寂寞 2020-12-05 13:12

Its not really a subtraction I\'m looking for. And I know its not a union or intersection... I have been given a long and complex stored procedure that returns a table of

14条回答
  •  失恋的感觉
    2020-12-05 14:07

    SELECT * FROM Table1 
    LEFT JOIN Table2 on Table1.id = Table2.id
    WHERE Table2.id IS NULL
    

    this should work on almost any database engine

提交回复
热议问题