📜  对 postgres 进行 DUPLICATE KEY UPDATE - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:33.035000             🧑  作者: Mango

代码示例2
create temp table tmp_table on commit drop as select * from brand with no data;
copy tmp_table (name,slug) from '/var/lib/postgresql/data/Brands.csv' DELIMITER ',' csv header;
insert into brand select distinct on (slug) * from tmp_table;