Here is my problem:
The table looks like that:
Name Count
Joe
Polina
Joe
Nick
Polina
Nick
Nick
Joe 2
Polina 2
Nick 3
The last three lines represent the count of how many times each name appears in the table.
So, what I need is UPDATE QUERY to fill the rest of the COUNT column with the count of how many times this name has appeared so far
The result should look like that:
Name Count
Joe 1
Polina 1
Joe 2
Nick 1
Polina 2
Nick 2
Nick 3
Joe 2
Polina 2
Nick 3
PLEASE HELP ME WITH THIS....I AM DESPERATE
The table looks like that:
Name Count
Joe
Polina
Joe
Nick
Polina
Nick
Nick
Joe 2
Polina 2
Nick 3
The last three lines represent the count of how many times each name appears in the table.
So, what I need is UPDATE QUERY to fill the rest of the COUNT column with the count of how many times this name has appeared so far
The result should look like that:
Name Count
Joe 1
Polina 1
Joe 2
Nick 1
Polina 2
Nick 2
Nick 3
Joe 2
Polina 2
Nick 3
PLEASE HELP ME WITH THIS....I AM DESPERATE