slm!
voilà la table que je voulais creer:
CREATE TABLE modification(
numM INT UNSIGNED NOT NULL AUTO_INCREMENT,
ref VARCHAR(100) NOT NULL,
dateM DATE,
qttE INT UNSIGNED,
qttS INT UNSIGNED,
PRIMARY KEY(ref,dateM,numM)
);
mais voilà le msg d'erreur qui s'affiche:
ERROR 1075(42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
alors que normalement ça marche j'ai lu ça dans le tutoriel de MySQL:
http://dev.mysql.com/doc/refman/5.0/...increment.htmlet là je sais pas c'est quoi le probleme!
Merci pour votre aide!!