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.
我有一个名为“合作伙伴”的表格,其中包含大量联系信息。在彻底清理了我收到它的数据之后,我添加了一个 UUID 列,理想情况下我希望通过 PHP $generateobjectid=(uniqid('AGF')); 填充 UUID。
有没有我可以编写的简单脚本,它会遍历数据库并为每一行输入一个 uniqid?
我更愿意保留通过 PHP 生成的 uniqid,以便我可以管理各个条目之间的前缀。
为什么不使用 mysql 函数 UUID()
UPDATE XXX set FIELD=CONCAT('AGF',UUID())