create database ssm_db default charset utf8mb4;
use ssm_db;
create table tbl_book ( id int not null auto_increment comment 'id', type varchar(20) not null comment '种类', name varchar(50) not null comment '书名', description varchar(255) not null comment '简介', primary key (id) ) COMMENT='商品表';
begin; insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第一版', 'Spring经典教程1'); insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第二版', 'Spring经典教程2'); insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第三版', 'Spring经典教程3'); insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第四版', 'Spring经典教程4'); insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第五版', 'Spring经典教程5'); insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第六版', 'Spring经典教程6'); insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第七版', 'Spring经典教程7'); insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第八版', 'Spring经典教程8'); insert into tbl_book(type, name, description) values ('计算机理论', 'Spring实战第九版', 'Spring经典教程9'); insert into tbl_book(type, name, description) values ('市场营销', '市场营销第一版', '市场营销教程1'); insert into tbl_book(type, name, description) values ('市场营销', '市场营销第二版', '市场营销教程2'); insert into tbl_book(type, name, description) values ('市场营销', '市场营销第三版', '市场营销教程3'); commit;
|