the sql:
SELECT
id, COUNT(id) AS Counter
FROM tableA
GROUP BY id
the result:

the goal is to do like below:

to combine the (NULL ID) with ID=09 so that it will 0+1=1, give proper naming to the id will be great too, like
ID Counter
NULLWITH09 1
THE 01 467
THE 02 8
any help would be great.. thanks