SQL 查询仅查找 2 列中的唯一字符串
我有一个包含 2 列的表,两列都有名称
,我想要一个仅查找唯一名称的查询 - 在整个表中最多只出现一次的名称。
例如,对于下表:
NAME1 | NAME2
--------------------
DAN MIKE
MIKE TONY
FOO DAN
它应该只返回 FOO 和 TONY。
谢谢
I have a table with 2 columns, both having names
I want a query that finds only unique names - names that only appear once max in the entire table.
For example, for the following table:
NAME1 | NAME2
--------------------
DAN MIKE
MIKE TONY
FOO DAN
It should only return FOO and TONY.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我想你可以通过几种方法来做到这一点,但这是一种(假设 Name1 和 Name2 具有相同的或隐式可转换的类型):
I guess you could do it a few ways, but here's one (assuming Name1 and Name2 are of the same, or implicitly convertible types):
简单的怎么样:
How about the simple:
只要
name1
和name2
不能为 null,就使用此查询:如果它们可以为 null,则使用此查询:
As long as
name1
andname2
cannot be null, use this query:If they can be null, use this query:
@CheeseConQueso 对这个问题的解释与我不同。我认为您的意思是来自两列组合的唯一名称。
这是我的版本:
您可以将整个内容包装在“从...中选择名称”中以单独获取名称,或者可以使用分析函数重写它,而不是分组以过滤重复项。取决于你的数据库的能力。
@CheeseConQueso interpreted the question differently than I did. I thought you meant unique names from both columns combined.
Here's my version:
You can wrap the whole thing in a "select name from ..." to get the names alone, or this could be rewritten using an analytic function instead of grouping to filter the duplicates. Depends on the capabilities of your database.