Just list multiple columns in the GROUP BY clause.
SELECT computer, user, count(*) AS count
FROM login
GROUP BY computer, user
Just list multiple columns in the GROUP BY clause.
SELECT computer, user, count(*) AS count
FROM login
GROUP BY computer, user