This is Sql Server 2008. I've got a set of data that looks something like this:
Table UserAchievement
id
userId
achievementId
completedDate
When a user earns an award, the award and user is logged along with a date. What I'd like is a query that finds a set of 3 achievements that were earned within 5 minutes of each other by the same user. Any thoughts on how to accomplish this?
Thanks In Advance-
Chu