有主键和自动递增字段
我有一个包含四列的表,(id
、searchstring
、count
、timestamp
)。
我希望能够在输入重复项时利用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,将主键设置为同时包含 id 和 searchstring
您可以使用以下方法更改现有表:
Yes, set the primary key to include both id and searchstring
You can change the existing table using: