让您全面了解并上手亿速云产品
常见入门级使用教程
对外 API 开发文档中心
您历史提交的工单
您的每一条意见,我们都严谨处理
您的每一条建议,我们都认真对待
执行如下命令,查看是否有无主键表。
select table_schema,table_name from information_schema.tables
where (table_schema,table_name) not in(
select distinct table_schema,table_name from information_schema.columns where COLUMN_KEY='PRI'
)
and table_schema not in (
'sys','mysql','information_schema','performance_schema'
);
执行如下命令,查看参数implicit_primary_key的值是否为ON。
show global variables like 'implicit_primary_key';
执行如下命令,修改无主键表。
alter table <表名> engine=innodb;
执行如下SQL语句,为无主键表添加主键。
ALTER TABLE <表名> ADD PRIMARY KEY (<需要设为主键的列名>);
Copyright © Yisu Cloud Ltd. All Rights Reserved. 2018 版权所有
广州亿速云计算有限公司 粤ICP备17096448号-1 粤公网安备 44010402001142号 增值电信业务经营许可证编号:B1-20181529