I've been searching for a way to count the amount of numbers in one row column spaced by ",". (But nothing found, I use MySQL and what to count with the use of PHP) This is going to be done for whole the database to find the total amount of numbers (by 100'reds). What I do is storing multiple numbers like the following.
100, 200, 300, 400
What I want is to get the amount of numbers in this column to be 4 and add this to the next row column number. Which could be
200
and therefore equal to 1 + 4 = 5.
To show it the database way see here See database sample if it helps
The total number should then endup beeing 6.
I want to hear if it is possible in someway to do this?
Thanks in advance :)