当前位置:Gxlcms > mysql > 设置MySQL自动增长起点和步长_MySQL

设置MySQL自动增长起点和步长_MySQL

时间:2021-07-01 10:21:17 帮助过:130人阅读

bitsCN.com


设置MySQL自动增长起点和步长

mysql> SET @auto_increment_increment=10;

mysql> SHOW VARIABLES LIKE 'auto_inc%';

+--------------------------+-------+

| Variable_name | Value |

+--------------------------+-------+

| auto_increment_increment | 10 |

| auto_increment_offset | 1 |

+--------------------------+-------+

2 rows in set (0.01 sec)

bitsCN.com

人气教程排行