MySQL構造測試資料

haoge0205發表於2017-05-23
構造測試資料(笛卡爾積,6 次100 萬)


create table t1(id int, val varchar(80));


set @i := 0;
create table tmp as select (@i := @i + 1) as id from information_schema.tables limit 10;


set @i := 0;
insert into t1 select @i := @i + 1, substr(concat(sha1(rand()), sha1(rand())), 1, floor(rand() * 80)) from tmp a, tmp b, tmp c, tmp d, tmp e, tmp f;

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28939273/viewspace-2139748/,如需轉載,請註明出處,否則將追究法律責任。

相關文章