Ich habe eine bereits vorhandene Tabelle, die 'fname', 'lname', 'email', 'password' und 'ip' enthält. Aber jetzt möchte ich eine automatische Inkrementierungsspalte. Wenn ich jedoch eintrete:
ALTER TABLE users
ADD id int NOT NULL AUTO_INCREMENT
Ich bekomme folgendes:
#1075 - Incorrect table definition; there can be only one auto column and it must be defined as a key
Irgendein Rat?:)