Hi,
I have a table containing: clasifieds, userID
When I run the following query I get the number of Posts(clasifieds) by the user xxx
SELECT COUNT(userID) FROM clasifieds WHERE userID=$xxx
Now, I need a query that would return me the full list of users with the number of times each user has posted (number of clasifieds for each user) not only the user xxx, ordered(DESC) by the number of posts.
How do I do this?
Please help. Thanks.