user를 셀렉 시 id를 기준으로 중복된 사용자를 쿼리단에서 제거해서 웹으로 결과를 뿌릴려구 합니다.
답변 부탁드립니다.
select user_nm
from aaa
where user_id in(select distinct user_id from aaa)
제가 작성한 위 쿼리가 잘못된건가요?
select distinct user_nmfrom aaa where user_id in ( select user_id from aaa
group by user_id having count(*) > 1);