我将一个Web应用程序部署到CloudBees,并使用一键式GUI创建了一个MySQL数据库。看起来auto_increment_increment
选项设置为10(表中id
每个新行增加10)。我试图更改auto_increment_increment
:
SET GLOBAL auto_increment_increment=1;
但是我收到了一个错误:Error Code: 1227. Access denied; you need (at least one of) the SUPER privilege(s) for this operation
。
如何更改auto_increment_increment
?
答案 0 :(得分:1)
提供商中的外部配置....
根据manual:
设置全局变量需要SUPER权限。
因此,您需要使用具有此权限的用户进行访问,您应该向您的提供商询问相关信息。
当然,您可以为会话更改此变量:
SET SESSION auto_increment_increment=1;
您不需要任何特殊权限来执行此操作