MYSQL ON DUPLICATE KEY UPDATE 具有多个键?
假设我有一条 id=1、b=20 和 c=30 的记录。 id 是我的主键。 仅当没有 b=20 和 c=30 的记录时,我才想在数据库中插入新记录。 到目前为止,我已经将主键设置为 id 但 b & 又如何呢? c?我该如何进行该查询? 谢谢。
Say i have a record with id=1, b=20 and c=30. id is my primary key.
I would like to insert into the database a new record only if there is no record with b=20 and c=30.
So far i have set a primary key to id but what about b & c? How can i do that query?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 B 和 C 上创建唯一的密钥。
You can create a unique key on B and C with.