Whenever i pull out data using count from my MySQL db, it always places the count column as the left most column.
e.g.
query: select count(*),name from db.db group by name order by name desc
gets:
count(*) | name
-----------------
23 | Andy
65 | Bob
12 | Chris
Is there a way to have it like this?:
name | count(*)
-----------------
Andy | 23
Bob | 65
Chris| 12