一、建表语句
create table role
(
roleId int null comment '角色id',
name varchar(32) null comment '姓名',
apearNum varchar(50) null comment '登场集数',
address varchar(50) null comment '上传地点',
dgreeId int null comment '身份id'
)
comment '角色表';
create table dgree
(
dgreeId int null comment '身份id',
dgreeName varchar(50) null comment '身份'
)
comment '身份表';
二、插入数据
insert into seaking.role (roleId, name, apearNum, address, dgreeId)
values (1, '路飞', '动画第1集', '风车村', 1),
(2, '索隆', '动画第2集', '谢尔兹镇', 2),
(3, '娜美', '动画第43集', '可可亚西村', 3),
(4, '乌索普', '动画第17集', '西罗布村', 4),
(5, '山治', '动画第30集', '海上餐厅巴拉蒂', 5),
(6, '乔巴', '动画第90集', '磁鼓王国(樱花王国)', 6),
(7, '罗宾', '动画第130集', '水之七都', 7),
(8, '弗兰奇', '动画第322集', '水之七都', 8),
(9, '布鲁克', '动画第381集', '恐怖三桅帆船篇', 9),
(10, '甚平', null, null, 10);
insert into seaking.dgree (dgreeId, dgreeName)
values (1, '船长'),
(2, '剑士'),
(3, '航海士'),
(4, '狙击手'),
(5, '厨师'),
(6, '船医'),
(7, '考古学家'),
(8, '船匠'),
(9, '音乐家'),
(10, '舵手');
标签:comment,动画,海贼王,06,int,dgreeId,MySQL,varchar,null From: https://www.cnblogs.com/houhuilinblogs/p/18104216