ClickHouse/docs/en/sql-reference/statements/alter/constraint.md
2023-03-27 14:54:05 -04:00

769 B

slug sidebar_position sidebar_label
/en/sql-reference/statements/alter/constraint 43 CONSTRAINT

Manipulating Constraints

Constraints could be added or deleted using following syntax:

ALTER TABLE [db].name [ON CLUSTER cluster] ADD CONSTRAINT constraint_name CHECK expression;
ALTER TABLE [db].name [ON CLUSTER cluster] DROP CONSTRAINT constraint_name;

See more on constraints.

Queries will add or remove metadata about constraints from table so they are processed immediately.

:::tip Constraint check will not be executed on existing data if it was added. :::

All changes on replicated tables are broadcasted to ZooKeeper and will be applied on other replicas as well.