MySQL基础课1的连接:https://www.jianshu.com/p/b6a252d42276
MySQL基础课连载2
利用where子句删选指定数据:select * from 表名 where 字段=值;
select * from exam_score1 where name='zhangsan' ;
and表示且,or表示或
修改数据:upadate 表名 set 字段=值 where id=1;
update exam_score1 set score=99 where id=1;
修改多个数据用,逗号隔开:
update exam_score1 set score=99,name='zhangsan1' where id=1;
删除数据:delete from 表名 where 字段=值;
delete from exam_score where id=1;
修改表结构:alter table 表名 add other 数据类型 default 值;
例:增加other字段int 默认值为10:
alter table exam_score add other int(4) default 10;
修改other字段名字为evaluation1数据类型为char和默认值为normal:
alter table exam_score1 change other evaluation1 char(20) default 'normal';
删除字段:alter table 表名 drop column evaluation;
alter table exam_score1 drop column evaluation;
修改表名:rename table 原表名 to 新表名;
rename table exam_score1 to score1;