Re: match an IP address
От | Scott Marlowe |
---|---|
Тема | Re: match an IP address |
Дата | |
Msg-id | dcc563d10809221013p6e854067n53eaf4150b61f07b@mail.gmail.com обсуждение исходный текст |
Ответ на | match an IP address (Joao Ferreira gmail <joao.miguel.c.ferreira@gmail.com>) |
Ответы |
Re: match an IP address
|
Список | pgsql-general |
On Mon, Sep 22, 2008 at 10:59 AM, Joao Ferreira gmail <joao.miguel.c.ferreira@gmail.com> wrote: > hello all, > > I'm unable to build a LIKE or SIMILAR TO expression for matching and ip > address > > 192.168.90.3 > 10.3.2.1 As already mentioned inet / cidr types should work. Example: postgres=# create table inettest (a inet); CREATE TABLE postgres=# insert into inettest values ('192.168.0.1'),('192.168.1.1'),('10.0.0.1'); INSERT 0 3 postgres=# select a from inettest where '192.168.0.1/16' >> a; a ------------- 192.168.0.1 192.168.1.1 (2 rows) postgres=# select a from inettest where '192.168.0.1/24' >> a; a ------------- 192.168.0.1 (1 row) postgres=# select a from inettest where '192.168.0.1/0' >> a; a ------------- 192.168.0.1 192.168.1.1 10.0.0.1 (3 rows)
В списке pgsql-general по дате отправления: