02-2--数据库MySQL:DDL(Data Definition Language:数据库定义语言)操作数据库中的表(二)
DDL对数据库的操作:http://blog.csdn.net/baidu_37107022/article/details/72334560
DDL对数据库中表的操作
1)方法概览
2)演示
//创建的前提条件:指明使用的数据库 :use database test1;
//创建表create table student (id int,name varchar(100),age int);
//查看数据库下的所有表show tables;
//查看指定的表的字段信息(表的内容)desc student;
//修改表(添加一个列)alter table student add score int;
//删除表的一个列alter table student drop score;
//修改表的某一个列的类型alter table student modify age text;
//修改列的名称alter table stu change age ag int;
//修改表名rename table student to stu;
//删除表 drop table stu;