mysql生成UUID

1.在数据库中试用UUID

update seat_list set gkey = replace(UUID(),"-","") where flag = 0;

2.mysql生成UUID

select REPLACE(UUID(),"-","");

原文地址:https://www.cnblogs.com/xww115/p/11695993.html