是否可以自动增加非主键?
表“book_comments”
book_id medium_int
timestamp medium_int
user_id medium_int
vote_up small_int
vote_down small_int
comment text
comment_id medium_int
Primary key -> (book_id, timestamp, user_id)
此表上没有其他索引。但是,我想将comment_id
列自动增量,以便我可以轻松创建另一个表:
表“book_comments_votes”
comment_id (medium_int)
user_id (medium_int)
Primary key -> (comment_id, user_id)
用户只能在每次评论时投票一次。此表通过主键强制执行此规则。
问题:
是否可以自动增加非主键 - 例如,自动增加表“book_comments”中的comment_id
列?
替代方案,讨论:
如上所述,我想简单地这样做。替代方案并不乐观。
book_id, timestamp, user_id
上的唯一索引制作commnet_id PK并强制执行完整性。在这种情况下,我会创建一个额外的索引。book_comments_votes
中的comment_id替换为整个PK。这将超过表格的三倍。连连呢?想法?
答案 0 :(得分:40)
是的,你可以。您只需要将该列作为索引。
CREATE TABLE `test` (
`testID` int(11) NOT NULL,
`string` varchar(45) DEFAULT NULL,
`testInc` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`testID`),
KEY `testInc` (`testInc`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
insert into test(
testID,
string
)
values (
1,
'Hello'
);
insert into test(
testID,
string
)
values (
2,
'world'
);
将为' testInc'插入具有自动递增值的行。然而,这是一件非常愚蠢的事情。
你已经说过了正确的方法:
"通过book_id,timestamp,user_id上的唯一索引制作comment_id PK并强制执行完整性。"
这正是你应该这样做的方式。它不仅为您提供了适合您未来查询所需的主键的主键,还满足the principle of least astonishment。
答案 1 :(得分:1)
您现有的表格。如果您已经为comment_id
提供了主键,唯一的目的是设置auto_increment。您可以将主键删除到该列。 MySQL允许具有任何键属性的列可以访问auto_increment。因此,最好尝试索引或unique key
至comment_id
,如下所示。
1.删除主键
ALTER TABLE `book_comments` MODIFY `comment_id` INT(5) NOT NULL;
ALTER TABLE `book_comments` DROP PRIMARY KEY ;
AUTO_INCREMENT
属性添加UNIQUE_KEY
。 ALTER TABLE 'brand_keywords' CHANGE COLUMN 'comment_id' 'comment_id' INT(5) NOT NULL AUTO_INCREMENT UNIQUE;
答案 2 :(得分:0)
从MySQL 5.5开始,似乎没有索引或主键可以为INT字段提供自动增量。