Re: removing leading and trailing blanks from every row in a table

Поиск
Список
Период
Сортировка
От Christopher Browne
Тема Re: removing leading and trailing blanks from every row in a table
Дата
Msg-id d6d6637f0901211131l4db814cl8d45a124ced2faa4@mail.gmail.com
обсуждение исходный текст
Ответ на removing leading and trailing blanks from every row in a table  ("Wm.A.Stafford" <stafford@marine.rutgers.edu>)
Список pgsql-novice
On Wed, Jan 21, 2009 at 1:19 PM, Wm.A.Stafford
<stafford@marine.rutgers.edu> wrote:
> I need a procedure to remove leading and trailing blanks from column of
> every row in a table.  I would like to pass the table name as a parameter
> and have the procedure do the rest.  Does something like this already exist?
>  Is it even possible?

There is a function that can help with this...

testdb=> select '|'|| btrim ('   foo', ' ') || '|';
 ?column?
----------
 |foo|
(1 row)

I wouldn't run it against every column, particularly as some columns
won't be text.

But you could certainly loop through a series of tables and columns
with queries like:
  update my_table set some_col = btrim(some_col, ' ') where some_col
is not null and btrim(some_col, ' ') <> some_col;

I wouldn't want to run this indiscriminately, as there is a risk of
this breaking uniqueness and failing.

I would instead want to do this selectively.
--
http://linuxfinances.info/info/linuxdistributions.html
George Burns  - "You can't help getting older, but you don't have to get old."

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

Предыдущее
От: "Wm.A.Stafford"
Дата:
Сообщение: removing leading and trailing blanks from every row in a table
Следующее
От: Kasia Tuszynska
Дата:
Сообщение: Re: PostgreSQL + PostGIS - "mining" FGDC metadata of GIS datasets