'fname', 'lname', 'email', 'password'및 'ip'가 포함 된 기존 테이블이 있습니다. 하지만 이제는 자동 증가 열을 원합니다. 그러나 입력 할 때 :
ALTER TABLE users
ADD id int NOT NULL AUTO_INCREMENT
다음을 얻습니다.
#1075 - Incorrect table definition; there can be only one auto column and it must be defined as a key
어떤 충고?:)