发表于: 2018-03-26 18:06:01
1 423
设计表结构, 安装mydql, 安装图形界面, 新建表, 插入数据
创建表
create table Enrolment (
id int unsigned auto_increment,
name varchar(255) not null,
qq varchar(255) not null,
job_type varchar(255) not null,
start_time date not null,
graduate_institutions varchar(255) not null,
online_code varchar(255) not null,
daily_link varchar(255) not null,
pledge varchar(255) not null,
master varchar(255) not null,
touch_method varchar(255) not null,
create_at varchar(255) not null,
update_at varchar(255) null,
primary key(id)
);
插入数据
INSERT INTO enrolment (name,qq,job_type,start_time,graduate_institutions,online_code,daily_link,pledge,master,touch_method,create_at,update_at)
VALUES('燕小鱼','11111','JAVA工程师','2018-3-26','北京天天蓝大学天天玩技术学院','3715','http:www.jnshu.com','如果我不能在IT特训营拼尽全力,为自己以后的修行路上打好基础,就让我变胖2斤','任我行','知乎','2018-3-26','2018-3-26');
评论