IFNULL을 이용하여 치환해준다
tbl_user = 테이블명 name = 컬럼명
SELECT IFNULL(name,"--") FROM tbl_user SELECT COUNT(IFNULL(name,0)) FROM tbl_user