这是我的桌子
id some_column store_id
1 (Excl. Tax) 1
2 (Incl. Tax) 1
3 Target Rule/Product 1
4 File %1 does not exist 1
5 hello 1
6 hello 2 <--- valid because store_id is 2 If its 1 then it should invalid as I want unique string for each store
...
其中id
是自动递增和主键,some_column
具有varchar且具有unique constraint
,而store_id
是我的商店的ID(可以是1或2或3等等)
在此表中,一切正常,但是当我具有store_id时为2,并且那时我添加了具有store_id 1的相同字符串,那么它给了我唯一的违反约束发现错误。但我想避免此错误,因为它具有不同的store_id。那么我该如何实现呢?有什么想法吗?
编辑
CREATE TABLE `comment_data` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`test_text` varchar(255) NOT NULL COMMENT 'Test String',
`store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
`translation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modification Time',
PRIMARY KEY (`id`,`store_id`),
UNIQUE KEY `CUSTOMER_TEST_TEXT` (`test_text`),
KEY `CUSTOMER_STORE_ID` (`store_id`),
CONSTRAINT `CUSTOMER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='comment_data';
答案 0 :(得分:2)
在some_column
和store_id
列的 中都添加唯一约束:
ALTER TABLE yourTable ADD UNIQUE u_idx (some_column, store_id);
如果您已经对some_column
进行了唯一约束,则可能必须先删除该约束:
ALTER TABLE yourTable DROP INDEX old_idx;