Re: How do I remove selected words from text field? - Mailing list pgsql-sql

From silly sad
Subject Re: How do I remove selected words from text field?
Date
Msg-id 4C2DAB14.1040309@bankir.ru
Whole thread Raw
In response to Re: How do I remove selected words from text field?  (Frank Bax <fbax@sympatico.ca>)
List pgsql-sql
On 07/02/10 03:25, Frank Bax wrote:
> Osvaldo Kussama wrote:
>> 2010/7/1 Frank Bax <fbax@sympatico.ca>:
>>> Create some tables; then add some data:
>>>
>>> create table t1 (i int, v varchar);
>>> insert into t1 values(1,'A B C D');
>>> insert into t1 values(2,'B D E F');
>>> insert into t1 values(3,'G H I J');
>>> insert into t1 values(4,'E');

first of all rebuild the table.
explode these strings by space char
and put into another table for convenient use

In other words
construct proper data scheme PRIOR TO USE it.


pgsql-sql by date:

Previous
From: Frank Bax
Date:
Subject: Re: How do I remove selected words from text field?
Next
From: Dmitriy Igrishin
Date:
Subject: Domains based on composite types.