Hi
I have a query:
I want to check if there are equal scores for all records. Say I have score of 100 3 times and score of 70 for 2 times, I want to know which records have the same score?Code:Dim rs As Recordset Set rs = CurrentDb.OpenRecordset("select * from users order by score desc")
rec 1 score 100
rec 3 score 100
rec 7 score 100
rec 88 score 70
rec 120 score 70
how to acheive that?