使用存储过程进行插入, 在navicate中示例如下:
输入需要的参数点击完成
在begin end中输入代码,示例代码如下
- CREATE DEFINER=`skip-grants user`@`skip-grants host` PROCEDURE `batch_insert`()
- BEGIN
-
-
- declare i int default 0;
- set i=0;
-
- while i<1000000 do
- INSERT INTO
- t_test(id, NAME,phone
- ,describ)
- VALUES (MD5(UUID()), CONCAT("张三",i),CONCAT("120",i),CONCAT("描述",i));
- set i=i+1;
- end while;
-
-
- END