-
show databases; 显示数据库
-
use student; 使用该数据库
3.show full columns from student; 展示数据库所有的字段
-
show columns from student; 展示数据库添加的字段
-
alter table student change column Sname Snames char(200); 添加 student表中的字段
-
alter table student drop column Sboth; 删除表中的字段 Sboth
7.create table teacher (Tname char(11) not null,Tnumber int(11) not null); 创建一个表名为Teacher的表
8.rename table teacher to teachers; 修改表的名字
9.drop table teachers; 删除一个表
10.show tables from mysql; 展示一个数据库中所有的表
- create index index_sage on student (Sage asc); 给Sage字段添加索引