SQL查找重复条目并插入到新列中
我有一个包含以下列的表:日期、电话、姓名和事件。
我需要一个查询,首先识别重复的电话条目,然后将日期较早的电话条目的名称分配给事件列。
I have a table with columns: Date, Phone, Name, and Event.
I need a query that will first recognize the duplicate phone entry, and then assign the name of whichever one has the earlier date to the event column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用途:
但它不解决最小值是否重复的问题。
Use:
But it doesn't address if there are duplicates of the minimum value.