Re: Method to detect certain characters in column?
От | Ian Meyer |
---|---|
Тема | Re: Method to detect certain characters in column? |
Дата | |
Msg-id | b54105080806231648o542efd1ahb6b3d17977cfdbd9@mail.gmail.com обсуждение исходный текст |
Ответ на | Re: Method to detect certain characters in column? (Steve Atkins <steve@blighty.com>) |
Ответы |
Re: Method to detect certain characters in column?
|
Список | pgsql-general |
Ah, so I forgot to mention the one caveat to this (sorry!) was there was a ton of punctuation/spaces and other ilk.. so this is what I came up with: bco=# select name from member where not (name ~ '^[A-Za-z0-9[:punct:] ]*$'); name ---------------------- Señorita Lolita Long Pig täkäurgh blåbärsöl fuchér MkII fuchér ver2.0 Gûm-ishi Ashi Gurum kängnäve Fuchér-version 2.1 fuchÃ(c)r Thank you everyone for your help.. that looks to be the correct amount I was looking for. Ian On Mon, Jun 23, 2008 at 7:28 PM, Steve Atkins <steve@blighty.com> wrote: > > On Jun 23, 2008, at 1:58 PM, Ian Meyer wrote: > >> So I have a column that contains usernames that have characters such >> as Ã(c)(R), for example: fuchÃ(c)r.. is there any way to find names >> with non A-Za-z0-9? > > ... WHERE column ~* '[^a-z0-9]' > > Cheers, > Steve > > > -- > Sent via pgsql-general mailing list (pgsql-general@postgresql.org) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgsql-general >
В списке pgsql-general по дате отправления: