I've got a table something like this:
UserID TeamID StartedDate
36202 1213 27/11/2019 9:00
36203 1213 1/11/2019 10:30
36203 1207 24/11/2019 10:00
36205 1207 21/11/2019 9:15
36203 1213 1/11/2019 10:30
36214 1217 10/11/2019 10:00
36205 1207 24/11/2019 10:00
36202 1213 1/11/2019 10:30
How do I query a list of users who have the same "StartedDate" for each unique date?
Output should be look like this.
StartedDate UserID's
24/11/2019 10:00 36203 & 36205
1/11/2019 10:30 36202 & 36203
I need to ignore time & focus on the date only.