tech/SQL

[MySQL] 컬럼 데이터 개수 조회

lehero 2015. 12. 9. 22:55

SELECT email, count(*) FROM registration GROUP BY email;


=> email 컬럼의 데이터 중 개수를 조회합니다.