Re: CIdr query qestion

From: "Jesper K(dot) Pedersen" <jkp(at)solnet(dot)homeip(dot)net>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: CIdr query qestion
Date: 2007-07-10 09:00:12
Message-ID: 20070710110012.432b76e1@io.solnet
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, 10 Jul 2007 09:36:49 +0200
Michele Petrazzo - Unipex srl <michele(dot)petrazzo(at)unipex(dot)it> wrote:

> Hi ml!
>
> A question about cidr query. I'm tring to use the various cidr
> functions to exclude a A sub class, but I don't understand how use it:
>
> SELECT count(ip_addr), ip_addr from wi_log_network where ip_addr !=
> network('10.10.0.0/16', 16) group by (ip_addr);
>
> it don't exclude the 10.10 ! Tried also the abbr or set_masklen
> keyword, but the same. How do it?
>
> P.s. Tried the >>, but it only include the values that I want to
> exclude! (And I don't found how to do the opposite!)
>

Couldnt you do a :

select count(ip_addr), ip_addr from wi_log_network where not (ip_addr
<< '10.10.0.0/16') group by (ip_addr);

Best regards
Jesper K. Pedersen

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Fuhr 2007-07-10 09:16:43 Re: CIdr query qestion
Previous Message Michele Petrazzo - Unipex srl 2007-07-10 07:36:49 CIdr query qestion