Re: Regex on field value

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: Regex on field value
Дата
Msg-id d4db202a-82a0-2d6d-c8d4-eee479702d61@aklaver.com
обсуждение исходный текст
Ответ на Re: Regex on field value  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-general
On 04/14/2018 02:06 PM, David G. Johnston wrote:
> On Saturday, April 14, 2018, Mike Martin <redtux1@gmail.com 
> <mailto:redtux1@gmail.com>> wrote:
> 
>     Is this possible, eg
>     Substring(field, regex include other field name)

Something like?:

select substring(link_key from '^' || c_id  ), link_key, c_id from 
projection where link_key != 'no_key' limit 10;

  substring |  link_key   |  c_id
-----------+-------------+--------
  6RPLF     | 6RPLF-1646  | 6RPLF
  6RPLF     | 6RPLF-1646  | 6RPLF
  6RPLF     | 6RPLF-1646  | 6RPLF
  6RPLF     | 6RPLF-1646  | 6RPLF
  4RPLF     | 4RPLF-1694  | 4RPLF
  10CEHB    | 10CEHB-2628 | 10CEHB
  10CEHB    | 10CEHB-2628 | 10CEHB
  10CEHB    | 10CEHB-2628 | 10CEHB
  10CEHB    | 10CEHB-1698 | 10CEHB
  1GPLF     | 1GPLF-1704  | 1GPLF
(10 rows)

> 
> 
> Your example doesn't make sense but if you are asking whether a regular 
> expression can be stored in a column the answer is yes - though it's 
> nothing but a text value with runtime limitations.
> 
> David J.
> 


-- 
Adrian Klaver
adrian.klaver@aklaver.com


В списке pgsql-general по дате отправления:

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: Regex on field value
Следующее
От: A A
Дата:
Сообщение: Can a broken Postgresql data directory be reconstructed withoutlosing data?