Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有 2 列,a 和 b。
A 列包含以下值:
a b c d
B 列包含以下值:
e d c b a
我该怎么做才能从两列中获取绝对不同的值?
这意味着如果我想对两列都进行计数,结果为 5。因为 a、b、c 和 d 在 B 列中重复,但不在 e 列中重复。
SELECT A FROM YourTable UNION SELECT B FROM YourTable