Suppose I have the table T with the following fields:
T(F1, F2, F3, F4, F5)
where combination of F1 & F2 forms a primary key for this table.
What would be the Access SQL query to select the following: T(F1, F2, F3, F4, F5, F4_F5_Count)
where F4_F5_Count is a count of duplicates of the combination of fields F4 and F5 only (i.e. not all fields that are being selected but only last two).?