Hi - I am trying to acheive something very simple and that is to put the results from this statement
select publicidad, count(*) from db group by publicidad
Into a readable format.
Bascially to show me the sort of thing I get when I do it directly with MySQL.
I don't need anything fancy - just a sinple table but as I don't know what sort of output the "Count(*)" gives me I don't know how to put this in a table.
What I would like is something like this:
Newspaper 5
TV 10
Fairs 2
And then maybe if I can work out how to get the count(*) as a variable then I could maybe do this grafically. Which would be easy if only I could get the count bit as a concrete number.
Thanks a lot
Jon