一意の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 Testing2 1 127.0.0.3_testing 127.0.0.3テスト1
select distinct .....