0

I have two sqlite db file A and B. In them I have table a and b. Is there a way to extract the difference between A.a and B.b.

I found a similar question here. In that question, both tables are under the same db files.

Lei Hao
  • 708
  • 1
  • 7
  • 21
  • 1
    You want [ATTACH](https://www.sqlite.org/lang_attach.html) plus something from that question. – Shawn Dec 06 '19 at 04:56

1 Answers1

1

Simply use ATTACH with whichever technique you choose.

See e.g. https://www.sqlite.org/lang_attach.html for details.

peak
  • 105,803
  • 17
  • 152
  • 177