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