show create table supplier; 备注:显示了建库脚本。 ------------- delimiter // 把语句定界符从 ;变为// --------------------- 存储过程保存在mysql数据库的proc表中, drop procedure inserts; delimiter // create procedure inserts() begin DECLARE i int; set i = 10000; WHILE(i < 60000) DO insert into norecords(norecords) values(i); SET i = i+1; END WHILE; end; // delimiter ; call inserts();
分类:Mysql
标签: