MySQL中添加数据时,同时生成UUID

code是product表中的主键,使用UUID保持唯一性,

insert into product(code, productNum, productName) values(REPLACE(UUID(), '-', ''), 001, '计算机')

你可能感兴趣的:(MySQL,mysql)