TSQL:在单个表中查找唯一条目
考虑一个表或 CTE 结构如下:
Name Num
---- ----
Abc 12
Abc 12
XYZ 70
XYZ 80
XYZ 85
Bar 50
Bar 55
Foo 44
Foo 44
Baz 88
要求是确定存在多个不同数字的名称。
所需的结果集是
Name
----
XYZ
Bar
您将使用什么 TSQL 语句来导出此结果集?
更新:确实,给定名称可能有 2 个以上条目。
Consider a table or CTE structured like this:
Name Num
---- ----
Abc 12
Abc 12
XYZ 70
XYZ 80
XYZ 85
Bar 50
Bar 55
Foo 44
Foo 44
Baz 88
The requirement is to determine the Name where multiple different Nums exist.
The desired resultset is
Name
----
XYZ
Bar
What TSQL statement would you use to derive this resultset?
Update: indeed there could be 2+ entries for a given Name.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 Num 列中没有 NULL
Assumes no NULLs in Num column