mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
679 B
679 B
sidebar_position | sidebar_label |
---|---|
43 | CONSTRAINT |
Manipulating Constraints
Constraints could be added or deleted using following syntax:
ALTER TABLE [db].name ADD CONSTRAINT constraint_name CHECK expression;
ALTER TABLE [db].name DROP CONSTRAINT constraint_name;
See more on constraints.
Queries will add or remove metadata about constraints from table so they are processed immediately.
:::warning 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.