创建表
create table name( id int, student varchar(20) );
查看表结构
describe 表名;
删除表
drop table 表名;
增加字段
alter table 表名
(3)表操作
原文:http://www.cnblogs.com/buchizaodian/p/6947376.html