Bonjour,
J'aimerai mettre une valeur par default a mon champ " commentaire " afin de m'aider dans mon code PHP. J'ai cherché sur internet et j'ai trouvé cette syntaxe qui ne fonctionne pas ...
`commentaire`text DEFAULT 'mavaleur',
voici mon code complet :
Je sais que cette question est bête, mais je bloque complètement
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 CREATE TABLE IF NOT EXISTS `client` ( `idclient` int(11) NOT NULL AUTO_INCREMENT, `nomsociete` varchar(20) NOT NULL, `nompersonne` varchar(25) NOT NULL, `numtel` varchar(10) NOT NULL, `emailcontact` varchar(25) DEFAULT NULL, `marque` varchar(20) DEFAULT NULL, `modelmateriel` varchar(20) DEFAULT NULL, `numserie` varchar(20) DEFAULT NULL, `etatprobleme` varchar(10) DEFAULT NULL, `numdossier` varchar(20) DEFAULT NULL, `descriptifProbleme` text, `commentaire1` text DEFAULT 'mavaleur' }
Erreur :
MySQL a répondu:
#1101 - BLOB/TEXT column 'commentaire1' can't have a default value
Dois je changer de type de donnée ?
Partager