gpt4 book ai didi

postgresql - 如果具有多个插入值的查询失败,先前值会发生什么

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

我正在使用 postgresql,假设我有以下查询。

insert into table_name values (1, 1), (1, 3);

假设插入值 (1,3) 失败。是否插入值 (1,1)

根据我所做的测试,第一个不会导致任何错误的值不会被插入,但我无法找到任何来源来支持它。我尝试用谷歌搜索的内容涉及不同的主题。

一般来说,插入多个值时,是全有还是全无?或者是否可以只插入一些值?

谢谢

最佳答案

是否插入值 (1,1)?

没有。 Postgresql 中的每条语句本身就是一个事务

来自manual :

PostgreSQL actually treats every SQL statement as being executed within a transaction. If you do not issue a BEGIN command, then each individual statement has an implicit BEGIN and (if successful) COMMIT wrapped around it.

关于postgresql - 如果具有多个插入值的查询失败,先前值会发生什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18835884/

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