发表于: 2016-07-15 22:55:19
0 2338
今天完成的事情:安装好了mysql,创建了表
create table student(
student_id int not null auto_increment,
creat_at Long not null,
update_at Long not null,
student_name varchar(100) not null,
primary key (student_id)
);
明天计划的事情:学会怎么把mybatis加到项目里来
遇到的问题:maven不能自动下载mybatis的jar
收获:学会怎么装mysql,怎么创建database和表
评论