最初にコマンドを実行し、次のように構成を表示します:
show variables like '%increment%';
If:
auto_increment_increment=2
(無料の学習ビデオ チュートリアルの推奨事項: mysql ビデオ チュートリアル )
次に実行します:
set @@global.auto_increment_increment = 1; set @@auto_increment_increment =1;
If:
auto_increment_offset=2
次に実行します:
set @@global.auto_increment_offset =1; set @@auto_increment_offset =1;
推奨される関連記事チュートリアル: mysql チュートリアル
以上がmysql は自動増加するステップ サイズ調整を実装しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。