MySQL 操作表命令
2013-10-21 18:55 胡炯 阅读(243) 评论(0) 编辑 收藏 举报新建表:
create table Itemcats (id int(11) not null auto_increment, primary key (id)) engine=MyISAM auto_increment=0 default charset=utf8 comment='商品分类表';
获取表中有哪些字段:
SHOW FULL FIELDS FROM BILL_BookDinner;
修改字段属性:
alter table mobile_advertising modify column advurl varchar(200);
添加字段:
ALTER TABLE `web_news` ADD COLUMN `myqq` INT(1) NULL DEFAULT '0' AFTER `catid`;