我需要一份基于一个字段和日期的不同记录列表
我正在尝试制定一条 SQL 语句,该语句将返回在一个字段上不同的记录列表,但如果日期字段中存在具有较新日期的重复记录(基于一个字段),则应选择该记录作为“独特”记录。
IE。
Field 1 Field 2 Field 3
A 3/28/11 Jimmy
A 4/11/11 Tom
B 3/29/11 Harry
C 4/12/11 Tom
C 3/30/11 Jimmy
将产生:
A 4/11/11 Tom
B 3/29/11 Harry
C 4/12/11 Tom
“不同”字段是字段 1。
I am trying to formulate an SQL statement that will return a list of records that are distinct on one field, but if a duplicate record (based on the one field) is present with a newer date in the date field, then it should be selected as the "distinct" record.
ie.
Field 1 Field 2 Field 3
A 3/28/11 Jimmy
A 4/11/11 Tom
B 3/29/11 Harry
C 4/12/11 Tom
C 3/30/11 Jimmy
Would produce:
A 4/11/11 Tom
B 3/29/11 Harry
C 4/12/11 Tom
The "Distinct" field is Field 1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注意:我还没有尝试过这个查询&我正在写它应该是什么。
Note: I haven't tried this query & am writing it of what it should be.