PostgreSQL中类似MySQL的REPLACE INTO语句
Posted dkbnull
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL中类似MySQL的REPLACE INTO语句相关的知识,希望对你有一定的参考价值。
insert into table_name (
id,
name,
remark,
status)
values (
:id,
:name,
:remark,
:status)
on conflict(id) do update set
name = :name,
remark = :remark,
status = :status
以上是关于PostgreSQL中类似MySQL的REPLACE INTO语句的主要内容,如果未能解决你的问题,请参考以下文章
PostgreSQL 的 EXPLAIN ANALYZE 的 MySQL 等价物是啥
PostgreSQL EXPLAIN ANALYZE 的 MySQL 等价物是啥
GreenPlum/PostGreSQL 通过“表磁盘存储文件“获取表最后“更新时间“