摘要:
https://yanbin.blog/use-postgresql-uuid-field-data-type/#more-8762 在postgresql中执行 select uuid_generate_v1(); select uuid_generate_v4(); 提示不存在 安装插件 CRE 阅读全文
摘要:
insert into t --进行插入 values(1,'name') ON CONFLICT(id) --如果id这个键存在 do update set --更新以下字段 name=EXCLUDED.name ; insert into t (a1,b1,c1) select a2,b2,c2 阅读全文