So everyone knows how Distinct works. What I'd like to do, is find out how many records were grouped together in each distinct record.I tried using Count in this mannerSelect count(*) from (select distinct ParentSeries, Series, Operating, Spacer, Gas, ILite, IThick, CLite, CThick, OLite, OThick, Grids from H_ImportItems where Part = 0 ) as new_table
but it only gave me the total amount of distinct records, not the amount of records in each distinct group.Is this possible? Appreciate your help!!