-
+
Data Definition
.
+
+
+
Exclusion constraints
+
+
+
+
+
+ exclusion
+
+
+ Exclusion constraints ensure that if any two rows are compared on
+ the specified columns or expressions using the specified operators,
+ at least one of these operator comparisons will be false. The syntax is:
+CREATE TABLE circles (
+ c circle,
+ EXCLUDE USING gist (c WITH &&)
+);
+
+
+
+ See also CREATE
+ TABLE ... CONSTRAINT ... EXCLUDE> for details.
+
+