在整个表上用另一个字符串替换字符串的最佳方法是什么?

时间:2014-11-14 06:13:15

标签: postgresql replace postgresql-9.1 postgresql-9.2

我的问题与下面类似,但我想将其替换为任何列:

postgresql - replace all instances of a string within text field

例如

- 在整个表(所有行)中替换所有cat with dog实例

我希望以下类似查询能够适用于所有列(不更新查询中未指定列名)。

UPDATE table_name SET information_schema.columns replace (information_schema.columns, 'old_value', 'new_value');

实际上似乎不起作用。

有什么建议吗?

3 个答案:

答案 0 :(得分:1)

create table sample (s varchar,s1 varchar,s2 varchar,s3 varchar,s4 varchar);

insert into sample values ('A','A','A','A','A');
insert into sample values('AB','AB','A','AB','AB');
insert into sample values('A','AB','A','AB','A');
insert into sample values('CA','A','A','CA','CA');

select * from sample 

试试这个

create or replace function f1(_table text,_oldVal text,_newVal text) returns void as 
$$
declare 
rw record;
begin
for rw in 
    select 'UPDATE '||$1||' SET '||C.COLUMN_NAME||' = REPLACE ('||C.COLUMN_NAME||','''||$2||''','''||$3||'''); ' QRY
    FROM (select column_name from information_schema.columns where table_schema='public' and table_name =$1)c
loop
    EXECUTE rw.QRY;
end loop;
end;
$$language plpgsql

并致电

select f1('sample','A','Z')

select * from sample 

OR

do 
$$
declare 
rw record;
begin
for rw in 
    select 'UPDATE sample SET '||C.COLUMN_NAME||' = REPLACE ('||C.COLUMN_NAME||',''Z'',''A''); ' QRY
    FROM (select column_name from information_schema.columns where table_schema='public' and table_name ='sample')c
loop
    EXECUTE rw.QRY;
end loop;
end;
$$;

select * from sample 

答案 1 :(得分:0)

UPDATE不会这样做。您需要使用column = value表达式指定要更改的每个列,并以逗号分隔。

UPDATE foo
SET bar = 1, baz = 2
WHERE bar = 5;

以下是有关UPDATE的更多信息,包括语法。

答案 2 :(得分:0)

您将不得不编写一些代码。您需要检索所有表的名称和所有文本名称:

select distinct table_name, column_name from information_schema.columns
    where table_schema='public'
and (data_type like 'char%' or data_type='text')
order by table_name, column_name;

然后为每个表/列组合,构建一个查询以进行替换:

myQuery = "update " + table_name +
    " set " + column_name + " = replace(" + column_name +
    ", 'old_val', 'new_val')"

...然后以您正在使用的任何语言执行查询。你可以在plpgsql中写这个,但是说​​真的,不要。这是一段非常危险的代码。

如果你正在为Wordpress或Drupal网站做这个,请访问这些人:https://interconnectit.com/products/search-and-replace-for-wordpress-databases/