I have the following information in table 'Test1':
field1 field 2
000001 000000
000002 000001
000003 000000
000004 000000
I want to write a query that will only display the unique field 2 records and as well provide a count of how many records have that id.
output should look like
field2 recno
000000 3
000001 1
can some one help with the trick to make this work?
thx
field1 field 2
000001 000000
000002 000001
000003 000000
000004 000000
I want to write a query that will only display the unique field 2 records and as well provide a count of how many records have that id.
output should look like
field2 recno
000000 3
000001 1
can some one help with the trick to make this work?
thx