发表于: 2017-04-27 14:06:13
1 1486
1.业务模型:一个科目对应多个学生。学生属性:id,姓名,科目,个人信息等……;科目属性:科目id,名称
2-3:安装
6.插入最近的学员到MySQL:
insert into student(name, qq, study_type,entrydate, graduated, number, daily_url , declaration, recommend, referee) values("李博文",187003594,"js",‘2017-03-20’,”吉林化工学院”, 513, ”http://www.jnshu.com/daily/16899?uid=9391","如果我不能在IT特训营拼尽全力,为自己以后的修行路上打好基础,让别人踩一辈子!", "高高","邓杰仁");
根据姓名查找:
select * from student where name="李博文";
7.改宣言
update student set declaration='老大最帅' where id=2;
评论