如何制作具有唯一id增量的自动添加MySQL表?
可能的重复:
如何在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于唯一的 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.