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.
我有一个名为学生的表,其中有一列名为 student_id。该列目前为空,是否有一个函数会自动生成一个随机ID,并为每条记录插入到表中。
谢谢
我建议使用UUID()函数。
INSERT INTO my_table VALES (UUID(), ...);
或者(在你的情况下):
UPDATE students SET student_id = UUID();
您可以尝试使用 UUID()来创建一个独特的价值,例如
UUID()
.... Values(UUID(), "TestUUID");