如何制作具有唯一id增量的自动添加MySQL表?

发布于 2024-11-04 13:06:16 字数 384 浏览 1 评论 0原文

可能的重复:
如何在mysql中生成唯一id?

我想知道如何创建一个 mysql 表,该表自动将每个唯一访问者添加到表中,并为他们提供唯一的 id,该 ID 加 1。例如,如果访问者访问我的网站,我希望 mysql 将它们存储在表中并给他们一个唯一的 ID。

访客: John

ID: 12345

有谁知道如何做到这一点?

Possible Duplicate:
How to generate unique id in mysql?

I'm wondering how to make a mysql table which automatically adds every unique visitor to the table and gives them a unique id, which is incremented by 1. For example if a visitor goes to my site, I want mysql to store them in a table and to give them a unique id.

Visitor: John

ID: 12345

Does anyone know how this can be done?

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

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

发布评论

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

评论(1

最后的乘客 2024-11-11 13:06:16

对于唯一的 ID,您在 MySql 中有序列。但是对于其他信息以及将该信息插入 mysql 中,您必须编写一个程序。它不能自动完成。至少不是你愿意做的方式。

For unique ids you have sequence in MySql. But for other information and insertion of that information in mysql you have to write a program. It can not be done automatically. At least not the way you are willing to do.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文