Jump to content

Total Unique Id's with PHP and MySQL


unemployment

Recommended Posts

You mean you want to count how many occurences of each there are?

 

If so just do a simple GROUP BY query

For example

 

Select

ID,

COUNT(ID)

from

[YOUR_TABLE_NAME]

GROUP BY

ID

 

or in PHP you can use the function

array_count_values(array)

 

Hope either of these helps :-)

Regards

 

Sarah

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.