MySQL高级知识(十一)——批量插入数据脚本
此博客的内容主要来源于尚硅谷的视频中,在此记录,以备以后自己查看。
1. 准备
- 创建dept表(部门表)
drop table if exists dept;
create table dept(
id int unsigned primary key auto_increment,
deptno mediumint unsigned not null default 0,
dname varchar(20) not null default '',
loc varchar(13) not null default ''
)engine=innodb default charset=utf8;
- 创建emp表(员工表)
drop table if exists emp;
create table emp(
id int unsigned primary key auto_increment,
empno mediumint unsigned not null default 0,/*编号*/
empname varchar(20) not null default '',/*名字*/
job varchar(9) not null default '',/*工作*/
mgr mediumint unsigned not null default 0,/*上级编号*/
hiredate date not null,/*入职时间*/
sal decimal(7,2) not null,/*薪水*/
comm decimal(7,2) not null,/*红利*/
deptno mediumint unsigned not null default 0 /*部门编号*/
)engine=innodb default charset=utf8;
- 开启log_bin_trust_function_creators参数。
创建函数,假如报错:This function has none of DETERMINISTIC…由于开启过慢查询日志,因为我们开启了 bin-log, 我们就必须为我们的function指定一个参数。因此我们需要开启函数创建的信任