重命名表:
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