1

关于 Unique_violation 异常如何更新或删除引发异常的行

表代码和插入

create table test
(
id serial not null,
str character varying NOT NULL,
is_dup boolean DEFAULT false,
CONSTRAINT test_str_unq UNIQUE (str)
);

INSERT INTO test(str) VALUES ('apple'),('giant'),('company'),('ap*p*le');

功能

CREATE OR REPLACE FUNCTION rem_chars()
  RETURNS void AS
$BODY$

BEGIN
begin 
update test set str=replace(str,'*','');
EXCEPTION WHEN unique_violation THEN
--what to do here to delete the row which raised exception or
--to update the is_dup=true to that row 
end;
END;
$BODY$
  LANGUAGE plpgsql VOLATILE
  COST 100;
ALTER FUNCTION rem_chars() OWNER TO postgres;
4

2 回答 2

2

-- 这将向您展示所有潜在的关键冲突

SELECT a.id, a.str, b.id , b.str
FROM test a, test b
WHERE a.str = replace(b.str,'*','')
AND a.id < b.id;

-- 这将删除它们

DELETE FROM test WHERE id IN (
  SELECT b.id
  FROM test a, test b
  WHERE a.str = replace(b.str,'*','')
  AND a.id < b.id
);
于 2011-05-10T15:18:12.350 回答
0

我认为唯一的解决方案是分两步执行此操作:

更新测试
  SET str = 替换(str,'*','')
  WHERE str NOT IN (SELECT replace(str,'*','') FROM test);

更新测试
  SET is_dup = true
  WHERE str IN (SELECT replace(str,'*','') FROM test);

至少我想不出更有效的方法。

于 2011-01-11T15:20:12.227 回答