create table new_tab select * from old_tab; ##完全拷贝一个表(?会丢索引?)
.....
create table new_tab select * from old_tab where 1<>1; ##生成结构完全相同的空表
create table new_tab like old_tab; ##生成结构完全相同的空表
alter table siphangzhou_acc change id uid int(10); ##去除自增长
alter table siphangzhou_acc drop primary key; ##去除主键