标签:ar sp 数据 bs 数据库 sql mysql 用户 har
1、
主键默认就是 非空
也就是 null 的那一列 为 no
not null → no
2、
数据库里的mysql库里面有用户
3、
DDL语言
主要是对数据表的添加,删除,修改操作
修改有三种方式:
alter table teacher modify job varchar(50);
alter table teacher change sid id int;
alter table teacher change column id id varchar(5); 和上面比较,多了两个column id而已
标签:ar sp 数据 bs 数据库 sql mysql 用户 har
原文地址:http://www.cnblogs.com/bluewelkin/p/4050917.html