简体   繁体   中英

DB2 Unique Constraint over multiple Columns

Is there a way to create a unique constraint over multiple columns like in Mysql?

UNIQUE KEY `uniqueKey` (`Field1`,`Field2`),

The only thing i have found is the unique keyword directly after the field.

Thanks in advance!

You should be able to add a unique constraint as:

ALTER TABLE t ADD CONSTRAINT unq_field1_field2 UNIQUE(field1, field2)

As with other databases, this is almost exactly equivalent to creating an index. The difference is that the constraint is named -- which can be convenient for tracking constraints and understanding error messages.

Notice, that if the matching index does not exist, then a unique index is automatically created.

You should be able to create a multi-column index

 CREATE UNIQUE INDEX myindex
                      ON mytable (col1, col2 desc, col3)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM