如果要为该字段创建唯一值,可以使用自动递增方法,仅以 36 为基数。这是一个高达数亿不同值的示例:
update t cross join (select @i := 0, @chars = '0123456789abcdefghijklmnopqrstuvwxyz') const
set hash = concat(substring(@chars, ((@i := @i + 1) %36)+1, 1),
substring(@chars, floor(@i/pow(36, 1))%36 + 1, 1),
substring(@chars, floor(@i/pow(36, 2))%36 + 1, 1),
substring(@chars, floor(@i/pow(36, 3))%36 + 1, 1),
substring(@chars, floor(@i/pow(36, 4))%36 + 1, 1),
substring(@chars, floor(@i/pow(36, 5))%36 + 1, 1),
'0000'
);
编辑:(基于修改后的问题)
你的表有一个唯一的约束。我只会做以下事情:
insert into vouchers(hash)
select concat(substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1),
substring(@chars, floor(rand()*36) + 1, 1)
);
只需在循环中(或根据需要)多次执行此操作即可填充表格。您极不可能得到重复项。如果这样做,该特定插入将失败。