Problème auto incrementation mysql
Résolu/Fermé
Nicocaine
Messages postés
7
Date d'inscription
lundi 7 mai 2007
Statut
Membre
Dernière intervention
14 mai 2007
-
7 mai 2007 à 14:27
Nicocaine Messages postés 7 Date d'inscription lundi 7 mai 2007 Statut Membre Dernière intervention 14 mai 2007 - 9 mai 2007 à 10:45
Nicocaine Messages postés 7 Date d'inscription lundi 7 mai 2007 Statut Membre Dernière intervention 14 mai 2007 - 9 mai 2007 à 10:45
A voir également:
- Problème auto incrementation mysql
- Mysql community server - Télécharger - Bases de données
- Telecharger auto refresh - Télécharger - Divers Web & Internet
- Auto mouse click - Télécharger - Divers Utilitaires
- Logiciel auto-entrepreneur gratuit télécharger - Télécharger - Comptabilité & Facturation
- Supprimer podcast android auto - Accueil - Guide audio
2 réponses
Je ne sais pas mais je te conseille de poser la question sur le forum "webmaster" car ils ont l'habitude d'utiliser mysql avec php.
Nicocaine
Messages postés
7
Date d'inscription
lundi 7 mai 2007
Statut
Membre
Dernière intervention
14 mai 2007
9 mai 2007 à 10:45
9 mai 2007 à 10:45
j'ai trouvé une solution possible:
je crée la table de la manière suivante:
CREATE TABLE REQUESTER
SELECT distinct(Requester) FROM TEMP_REQUESTER;
et ensuite j'ajoute par modification de la table une nouvelle colonne qui créé l'auto incrementation:
ALTER TABLE REQUESTER ADD id_requester INT UNSIGNED NOT NULL AUTO_INCREMENT,
ADD INDEX (id_requester);
je crée la table de la manière suivante:
CREATE TABLE REQUESTER
SELECT distinct(Requester) FROM TEMP_REQUESTER;
et ensuite j'ajoute par modification de la table une nouvelle colonne qui créé l'auto incrementation:
ALTER TABLE REQUESTER ADD id_requester INT UNSIGNED NOT NULL AUTO_INCREMENT,
ADD INDEX (id_requester);