Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
索引“立即”意味着什么?
我指的是 SQL 标准中的“索引”,但根据这个PostgreSQL 文档可能更具体。
这指示何时应用约束检查。从有关约束的文档中:
SET CONSTRAINTS 设置当前事务中约束检查的行为。在每个语句的末尾检查 IMMEDIATE 约束。在事务提交之前不会检查 DEFERRED 约束。每个约束都有自己的 IMMEDIATE 或 DEFERRED 模式。
UNIQUE 索引也是一个约束,所以这适用。