find difference in two data set by sql

2025/03/01

思路:

  1. 找到 A 和 B 的公共部分 C, C = join A and B
  2. A 的特有部分为 A - C, not in C but in A
  3. B 的特有部分为 B - C, not in C but in B