고유 한 ip_addresses (이 경우 '3') 수를 얻으려고합니다. 테이블은 다음과 같습니다.
구조:
CREATE TABLE bandits (
key text NOT NULL,
ip_address inet,
offence text,
count bigint DEFAULT 1);
데이터:
복사 도적 (key, ip_address, offence, count) from stdin; 127.0.0.1_testing 127.0.0.1 테스트 1 127.0.0.2_testing 127.0.0.2 테스트 3 127.0.0.2_testing2 127.0.0.2 테스트 2 1 127.0.0.3_testing 127.0.0.3 테스트 1
select distinct .....