I am trying to execute this query through PHP:
SELECT risk, Count(risk) AS CountOfrisk FROM master GROUP BY risk
should return
Risk CountofRisk 2 456 3 664 4 998
but the page only returns the risks, but not the count?
Post the code you are using to output the results...
Thanks...looks like I have figured my problem.