开发者

postgresql 实现replace into功能的代码

开发者 https://www.devze.com 2022-12-09 13:36 出处:网络 作者: 沧溟111
PostgreSQL 9.5- 使用函数或with实现 create table test(id int primary key, info text, crt_time timestamp);

PostgreSQL 9.5-

使用函数或with实现

create table test(id int primary key, info text, crt_time timestamp);
with upsert as (update test set info='test',crt_time=now() where id=1 returning *) insert into test select 1,'test',now() where not exists (select 1 from upsert where AIsCxwuFthid=1); 

PostgreSQL 9.5+

PostgreSQL 9.5 引入了一项新功能,UPSERT(insert on conflict do),当插入编程客栈遇到约束错误时,直接返回,或者改为执行UPDATE。

INSERT INTO table_name VALUES() ON conflict开发者_NoSQL (唯一索引字段) DO
UPDATE ...

补充:PostgreSQL中select into用法总结

在普通的sql中,postgresql支持seelct......into......

但是动态调用时候不支持select......into....编程客栈..

比如:

create or replace FUNCTION test () RETURNS void AS
$body$
DECLARE
toalnum int;
BEGIN
execute 'select sum(colname) into totalnum';
return;
END;
$body$
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;

以上情况会报错。。。。。

因该修改为如下

create or replace FUNCTION test () RETURNS void AS
$body$
Dwww.devze.comECLARE
toalnum int;
BEGIN
execute 'select sum(colname)' into totalnum;
return;
END;
$body$
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。如有错误或未考虑完全的地方,望不吝www.devze.com赐教。

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号