我试图在postgresql中定义条件插入,在3列的索引上(这给出了唯一性)。我试图从postgresql文档中遵循以下示例:
INSERT INTO example_table
(id, name)
SELECT 1, 'John'
WHERE
NOT EXISTS (
SELECT id FROM example_table WHERE id = 1
);
对于基本的SELECT WHERE NOT EXISTS结构。但是如果索引变化,即如果表中存在id =当前预插入行的索引值的选择,则要阻止插入,如何实现?这是我目前的(错误的)代码:
insert = (
"INSERT INTO table (index,a,b,c,d,e)"
"SELECT * FROM table WHERE NOT EXISTS (SELECT * FROM table WHERE index=index)");
cur.execute(insert,data)
为清楚起见,索引是在数据列(a,b,c)
上定义的,数据是(index,a,b,c,d,e)
的一行,我将其包装在psycopg2中。我已经找了一段时间的答案,但是还没有能够成功地适应这个问题。
答案 0 :(得分:1)
insert into t1 (a, b, c, d, e)
select a, b, c, d, e
from t2
where not exists (
select 1
from t1
where a = t2.a and b = t2.b and c = t2.c
);
在Python中,使用三重引号原始字符串
更简单,更清晰insert = """
insert into t1 (a, b, c, d, e)
select a, b, c, d, e
from t2
where not exists (
select 1
from t1
where a = t2.a and b = t2.b and c = t2.c
);
"""