hovercraft
Technical User
How could I loop through each value in a table and count each record with a unique value in that field then update the table?
Here is what I would like the table data to end up as:
my_zip my_count
12345 1
12345 2
12345 3
12345 4
98765 1
98765 2
98765 3
98765 4
98765 5
98765 6
98765 7
98765 8
22222 1
22222 2
33333 1
33333 2
33333 3
So that for each unique zip code there is a count in order .
Does that make sense?
Thanks in advance,
Hovercraft
Here is what I would like the table data to end up as:
my_zip my_count
12345 1
12345 2
12345 3
12345 4
98765 1
98765 2
98765 3
98765 4
98765 5
98765 6
98765 7
98765 8
22222 1
22222 2
33333 1
33333 2
33333 3
So that for each unique zip code there is a count in order .
Does that make sense?
Thanks in advance,
Hovercraft