选择查询重复值
使用 SQL Server 2000
我想检查列值是否相同
Table1
ID Value
001 1000
002 1000
003 5000
从上表中,输出中没有显示任何内容,因为每个 id 的值都不同。
如果所有 id 的值都相同,则显示,否则不显示任何内容。
如何进行选择查询。
需要查询帮助
Using SQL Server 2000
I Want to Check the colum value whether it is same or not
Table1
ID Value
001 1000
002 1000
003 5000
From the above table, nothing display in the output, because values are differenct for each id.
If the values are same for all the id, then display otherwise nothing display.
How to make a select query.
Need Query Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此代码将查看
ID
的重复Values
数量,并返回:ID
, DuplicateValue
,该值在表中存在的次数。This code will look at the number of duplicate
Values
for anID
, and return:ID
, DuplicateValue
, number of times this value exists in the table.尝试:
Try: