How can i exclude a user with a user_id of 1 for example from the following query below?
Here is My MySQL code.
"SELECT users.*, COUNT(*) as coun, users_comments.user_id
FROM users_comments
INNER JOIN users ON users_comments.user_id = users.user_id
GROUP BY users_comments.user_id
ORDER BY coun DESC
LIMIT 5"