创建数据库 插入数据存储过程代码 创建work1.sql文件 -- 创建表CREATE TABLE `innodb`( `id` int(11) NULL DEFAULT 0, `data` int(11) NULL DEFAULT 0) ENGINE=InnoDB;CREATE TABLE `myisam`( `id` int(11) NULL DEFAULT 0, `data` int(11) NULL DEFAULT 0) ENGINE=myisam;create procedure myinsert(a int) begin declare i int default 1; repeat insert into `innodb` VALUES(i,i); set i=i+1; until i>a end repeat; end;-- 执行存储过程call myinsert(10000);-- 删除myinsert函数drop procedure if exists myinsert; 可以编写sql文件,也可在命令列界面中分步运行 运行之后需要刷新 Author: Michelle19lLink: https://gitee.com/michelle19l/michelle19l/2020/03/16/数据库/数据库上机L2:创建数据库-插入数据存储过程代码/Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.数据库 Donate微信支付寶Previous Post第五章 解线性方程组的直接方法Next Post漏洞测试作业一:虚拟机的安装 Recommend 2020-05-21sql语言 2020-04-10数据库上机L5 2020-04-01sql语句 2020-03-31数据库上机L4 2020-03-29power designer入门 2020-03-26数据库上机L3