Mysql
 sql >> Database >  >> RDS >> Mysql

Come faccio a contare solo la prima occorrenza di un valore?

breve e semplice:usa COUNT DISTINCT :

SELECT
  screenWidth,
  COUNT(DISTINCT user_id)
FROM
  mytable
GROUP BY
  screenWidth;