我有一個MariaDB的加萊拉集羣(3個節點),我設置uid
自動增加,併成爲表的主鍵作爲爲什麼auto_increment id不會逐個增加,如何設置?
`uid | int(11) | NO | PRI | NULL | auto_increment`.
MariaDB [hello_cluster]> select uid from table order by uid limit 10;
+-----+
| uid |
+-----+
| 3 |
| 6 |
| 9 |
| 12 |
| 15 |
| 18 |
| 21 |
| 24 |
| 27 |
| 30 |
+-----+
我嘗試了下面的命令,這是行不通的
alter table uid AUTO_INCREMENT=1
你是對的。我挖掘了一些更多相關信息。 – user2864740