给MySQL数据表加入uuid

alter table table_name add column uuid VARCHAR(255) default "0"

update table_name set uuid = UUID();

原文地址:https://www.cnblogs.com/iamjqy/p/8667956.html