gpt4 book ai didi

Postgresql - 不匹配时插入并返回 pid

转载 作者:行者123 更新时间:2023-11-29 13:41:29 24 4
gpt4 key购买 nike

我需要在不匹配时插入并返回新的 pid 或匹配的 pid(串行数据类型),如何在 postgresql 中执行此操作?

我试过:

Insert Into users (email, passwd, active) 
Values ('test@example.com', 'testpwd', false)
ON Conflict (email) Do Update
Set Passwd='testpwd', Active=false

请帮忙

提前致谢唐

最佳答案

我终于明白了..:)

Insert Into users (email, passwd, active) 
Values ('test@example.com', 'testpwd', false)
ON Conflict (email) Do Update
Set Passwd='testpwd', Active=false
Returning pid

关于Postgresql - 不匹配时插入并返回 pid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54760289/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com