ClickHouse/docs/zh/sql-reference/statements/alter/constraint.md
2022-08-29 13:59:51 -04:00

24 lines
706 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
slug: /zh/sql-reference/statements/alter/constraint
sidebar_position: 43
sidebar_label: 约束
---
# 操作约束 {#manipulations-with-constraints}
约束可以使用以下语法添加或删除:
``` sql
ALTER TABLE [db].name ADD CONSTRAINT constraint_name CHECK expression;
ALTER TABLE [db].name DROP CONSTRAINT constraint_name;
```
查看[constraints](../../../sql-reference/statements/create/table.mdx#constraints)。
查询将从表中添加或删除关于约束的元数据,因此它们将被立即处理。
!!! warning "警告"
如果已有数据被添加,约束检查**将不会被执行**。
复制表上的所有更改都会被广播到ZooKeeper并应用到其他副本上。