使用PHP创建MySQL表,提示出错,后来直接在MySQL里创建,提示出错:
there can be only one auto column and it must be defined as a key
是因为创建的表中有一列是定义的AUTO_INCREMENT,但是该列没有定义为主键,将该列包含进主键或者使用该列作为主键(请根据自己的实际情况解决),问题解决。
使用PHP创建MySQL表,提示出错,后来直接在MySQL里创建,提示出错:
there can be only one auto column and it must be defined as a key