数据库mysql重命名表、增加多列和索引、复制表数据命令
时间:2015-02-28 22:29来源:未知 作者:好模板 点击:次
重命名表: rename table youku_files to video_files 增加多列和索引: alter table video_info add (imgpath VARCHAR(255), website varchar(40)),add index(type) 复制表数据: insert into video_files(id,name,disk,hash,size,date,ty
重命名表:
rename table youku_files to video_files
增加多列和索引:
alter table video_info add (imgpath VARCHAR(255), website varchar(40)),add index(type)
复制表数据:
insert into video_files(id,name,disk,hash,size,date,type) select id,name,disk,hash,size,date,'youku' from youku_files
(责任编辑:好模板) |
------分隔线----------------------------