erreur lors de l'insertion
Bonsoir, voici ma table mysql
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| CREATE TABLE IF NOT EXISTS `employers` (
`numeroIdentite` int(11) NOT NULL,
`matricule` varchar(11),
`prenom` varchar(100) NOT NULL,
`nom` varchar(60) NOT NULL,
`sexe` varchar(1) NOT NULL,
`dateNaissance` date NOT NULL,
`lieuNaissance` varchar(100) NOT NULL,
`adresse` varchar(400) NOT NULL,
`telephone` int(9) NOT NULL,
`fonction` varchar(100) NOT NULL,
`actif` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`numeroIdentite`)
); |
Lorsque j’insère j'ai l'erreur suivante :
Citation:
Out of range value for column 'numeroIdentite' at row 1 SQL=[INSERT INTO employers ( numeroIdentite, prenom , nom , dateNaissance, lieuNaissance, matricule , adresse , telephone, sexe , fonction, actif ) values ( 12232323232 , 'toto' , 'tata' , '2011-01-04' , 'marne' , 'dededededed' , 'marne' , 4444444444 , 'M' , 'comptable' , 1 )] Error was [Out of range value for column 'numeroIdentite' at row 1]
Merci d'avance!