MySQL - 自动增量到guid
我有一个带有自动递增 ID 字段的表,如下所示。
+------------+-------------------------------------+ | company_id | name | +------------+-------------------------------------+ | 1 | International Client | | 2 | Oracle | | 3 | test | | 4 | testabc | | 5 | testdef | | 6 | abcd | +------------+-------------------------------------+
我想使用以下命令将 ID 列更新为 GUID
uuid()function.
此外,如何将外键引用更新为正确的 GUID?
I have a table with an auto-increment ID field as shown below.
+------------+-------------------------------------+ | company_id | name | +------------+-------------------------------------+ | 1 | International Client | | 2 | Oracle | | 3 | test | | 4 | testabc | | 5 | testdef | | 6 | abcd | +------------+-------------------------------------+
I want to update the ID column to be a GUID using the
uuid()
function.
Additionally, how do I update the foreign key references to the correct GUID?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用触发器。
表和PK,现在触发..
现在尝试,
问候,
/吨
Use triggers.
table and pk, now trigger..
Now try,
regards,
/t
你不能将它与自动增量一起使用
guid 是 char 而不是 intger
你需要自己插入它,
你还需要将 id 更改为 char(40)
you can't use it with autoincrement
guid is char not intger
you need to insert it your self
also you will need to change the id to char(40)
在 mysql 8.0 中,您可以使用如下内容:
对于不带破折号的 UUID:
对于带破折号的 UUID:
我希望这能回答您的问题,让我知道是否不是或者您需要更多。
In mysql 8.0 you can use something like below:
For UUID without dashes:
For UUID with dashes:
I hope this answers your question, Let me know if it is not or you need more.