Jump to content

php/mysql grouping and counting


cjkeane

Recommended Posts

Hi everyone.

I need to display a list of departments and a total of occurrences of each department in mysql/php.

eg.

There are 3 Administration types.

There are 5 Government types.

etc.

there is no error when i run the code below, but nothing displays happens either. i'd appreciate anyone's help. Thanks.

 

<?php
$query = mysql_query("SELECT CompanyName, CompanyBranch, DateRecorded, DateClosed, Year(DateRecorded) AS Year, CaseOwner.UsersDepartment
FROM records LEFT JOIN CaseOwner ON CaseOwner = CaseOwner.ProperName
GROUP BY CompanyName, CompanyBranch, DateRecorded, DateClosed, CaseOwner.UsersDepartment
ORDER BY CaseOwner.UsersDepartment") or die("SELECT Error: ".mysql_error());
$result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($result)){
echo "There are ". $row['COUNT(CaseOwner.UsersDepartment)'] ." ". $row['CaseOwner.UsersDepartment'] ." types.";
echo "<br />";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/231344-phpmysql-grouping-and-counting/
Share on other sites

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.