Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有整数主键的表。对表的插入是通过存储过程进行的。
我想对主键使用随机数,例如:
ID 4345, 3432, 6686, 8556
每行的数字长度必须相同。
我尝试使用identity规范,但它是增量的,而不是随机的。
identity
我可以想到两种选择-
获取随机值并重试 - 使用 MYSQL 创建随机数
使用产生唯一值但结果不是随机的自动增量 - 如何在 MySQL 中设置初始值和自动增量?