本文介绍了如何添加自动增量到列在mysql数据库使用phpmyadmin?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我一直在尝试添加自动增量到我的一个列(基本上是一个ID),但我找不到我的列的自动增量选项。
b b b b b pre>
ALTER TABLE your_table
MODIFY some_column INT NOT NULL AUTO_INCREMENT;
I've been trying to add auto-increment to one of my columns (basically an ID) but I can't find the auto-increment option for my column. Any idea where it is?
解决方案
You can add it like this
ALTER TABLE your_table
MODIFY some_column INT NOT NULL AUTO_INCREMENT;
这篇关于如何添加自动增量到列在mysql数据库使用phpmyadmin?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!