有主键和自动递增字段

发布于 2024-11-09 06:52:40 字数 283 浏览 0 评论 0原文

我有一个包含四列的表,(idsearchstringcounttimestamp)。
我希望能够在输入重复项时利用 ON DUPLICATE KEY UPDATE 功能来更新 searchstring 的计数。

但是,searchstring 需要成为主键才能执行此操作,并且我的 id 会自动设置为我的主键,因为它是自动递增的。
有什么办法解决这个问题吗?

I have a table with four columns, (id, searchstring, count, timestamp).
I want to be able to make to use of the ON DUPLICATE KEY UPDATE feature to update the count of searchstring when a duplicate is entered.

However, searchstring needs to be the primary key to be able to do this, and my id is automatically set to my primary key because it is auto incrementing.
Is there any way around this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

£噩梦荏苒 2024-11-16 06:52:40

是的,将主键设置为同时包含 id 和 searchstring

CREATE TABLE  `test`.`new table` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `searchstring` varchar(45) NOT NULL,
  `count` int(10) unsigned NOT NULL,
  `timest` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`,`searchstring`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

您可以使用以下方法更改现有表:

ALTER TABLE `test`.`new table` DROP PRIMARY KEY,
 ADD PRIMARY KEY  USING BTREE(`id`)
 ADD UNIQUE INDEX ss(searchstring);

Yes, set the primary key to include both id and searchstring

CREATE TABLE  `test`.`new table` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `searchstring` varchar(45) NOT NULL,
  `count` int(10) unsigned NOT NULL,
  `timest` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`,`searchstring`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

You can change the existing table using:

ALTER TABLE `test`.`new table` DROP PRIMARY KEY,
 ADD PRIMARY KEY  USING BTREE(`id`)
 ADD UNIQUE INDEX ss(searchstring);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文