postgresql 实现replace into功能的代码
PostgreSQL9.5-
使用函数或with实现
createtabletest(idintprimarykey,infotext,crt_timetimestamp); withupsertas(updatetestsetinfo='test',crt_time=now()whereid=1returning*)insertintotestselect1,'test',now()wherenotexists(select1fromupsertwhereid=1);
PostgreSQL9.5+
PostgreSQL9.5引入了一项新功能,UPSERT(insertonconflictdo),当插入遇到约束错误时,直接返回,或者改为执行UPDATE。
INSERTINTOtable_nameVALUES()ONconflict(唯一索引字段)DO UPDATE...
补充:PostgreSQL中selectinto用法总结
在普通的sql中,postgresql支持seelct......into......
但是动态调用时候不支持select......into......
比如:
createorreplaceFUNCTIONtest()RETURNSvoidAS $body$ DECLARE toalnumint; BEGIN execute'selectsum(colname)intototalnum'; return; END; $body$ LANGUAGE'plpgsql'VOLATILECALLEDONNULLINPUTSECURITYINVOKER;
以上情况会报错。。。。。
因该修改为如下
createorreplaceFUNCTIONtest()RETURNSvoidAS $body$ DECLARE toalnumint; BEGIN execute'selectsum(colname)'intototalnum; return; END; $body$ LANGUAGE'plpgsql'VOLATILECALLEDONNULLINPUTSECURITYINVOKER;
以上为个人经验,希望能给大家一个参考,也希望大家多多支持毛票票。如有错误或未考虑完全的地方,望不吝赐教。