You can set up a new destination table and simply query the score and group for all columns:
SELECT FIELD1, FIELD2, FIELD3, FIELD4 FROM ( SELECT COUNT (*), FIELD1, FIELD2, FIELD3, FIELD4 FROM [<TABLE>] GROUP BY FIELD1, FIELD2, FIELD3, FIELD4)
Rich reinheimer
source share