id0 字段为主键,自增,操作删除主键就会报错。
mysql> alter table bigdata__bak drop primary key;
ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
修改为唯一约束
mysql> alter table bigdata__bak add unique(id0);
Query OK, 0 rows affected (0.17 sec)
Records: 0 Duplicates: 0 Warnings: 0
再操作即可。
mysql> alter table bigdata__bak drop primary key;
Query OK, 266134 rows affected (0.89 sec)
Records: 266134 Duplicates: 0 Warnings: 0
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。