avatar

数据库上机L2
  • 创建数据库
  • 插入数据存储过程代码

创建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文件,也可在命令列界面中分步运行

运行之后需要刷新

image-202003162140439801584365805(1).png

Author: Michelle19l
Link: 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
  • 微信
    微信
  • 支付寶
    支付寶