본문 바로가기
DB/MySQL

SUM,MAX,MIN - 중복 제거

by hyohyohyo 2023. 2. 22.
728x90

중요문법

중복을 제거하는 distinct에 대해 알아두자

 

코드

-- 코드를 입력하세요
SELECT count(distinct name) 
from animal_ins
where name is not null

댓글