幂等性的一个要求是屡次操做的结果一致。对于update操做,屡次直接的结果都是最后update的值,是知足需求的。但对于insert,若是已经插入,第二次会报错,duplicate error, 主键重复或者unique key duplicate。因此须要作一下处理。html
最简单的就是,try-catch,当报错的时候,调用update去更新,或者策略更简单点,直接返回就行,不须要更新,以第一条为准。sql
PostgreSQL从9.5以后就提供了原子的upsert语法: 不存在则插入,发生冲突能够update。express
官方文档: https://www.postgresql.org/docs/devel/sql-insert.htmlapp
[ WITH [ RECURSIVE ] with_query [, ...] ] INSERT INTO table_name [ AS alias ] [ ( column_name [, ...] ) ] [ OVERRIDING { SYSTEM | USER} VALUE ] { DEFAULT VALUES | VALUES ( { expression | DEFAULT } [, ...] ) [, ...] | query } [ ON CONFLICT [ conflict_target ] conflict_action ] [ RETURNING * | output_expression [ [ AS ] output_name ] [, ...] ] where conflict_target can be one of: ( { index_column_name | ( index_expression ) } [ COLLATE collation ] [ opclass ] [, ...] ) [ WHERE index_predicate ] ON CONSTRAINT constraint_name and conflict_action is one of: DO NOTHING DO UPDATE SET { column_name = { expression | DEFAULT } | ( column_name [, ...] ) = [ ROW ] ( { expression | DEFAULT } [, ...] ) | ( column_name [, ...] ) = ( sub-SELECT ) } [, ...] [ WHERE condition ]
index_column_namepost
The name of a table_name column. Used to infer arbiter indexes. Follows CREATE INDEX format. SELECT privilege on index_column_name is required.ui
index_expressionspa
Similar to index_column_name, but used to infer expressions on table_name columns appearing within index definitions (not simple columns). Follows CREATE INDEX format. SELECT privilege on any column appearing within index_expression is required.postgresql
建立表code
CREATE TABLE "test"."upsert_test" ( "id" int4 NOT NULL, "name" varchar(255) COLLATE "pg_catalog"."default" ) ;
当主键id冲突时,更新其余字段orm
INSERT INTO test.upsert_test(id, "name") VALUES(1, 'm'),(2, 'n'),(4, 'c') ON conflict(id) DO UPDATE SET "name" = excluded.name;
当主键或者unique key发生冲突时,什么都不作
INSERT INTO test.upsert_test(id, "name") VALUES(1, 'm'),(2, 'n'),(4, 'c') ON conflict(id) DO NOTHING;
原文出处:https://www.cnblogs.com/woshimrf/p/postgresql-upsert.html