| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 
 |  
 
CREATE TABLE `calendriers_championnats` (
 
`id_calendrier` int( 10 ) NOT NULL AUTO_INCREMENT ,
`id_championnat` int( 3 ) default NULL ,
`type` int( 3 ) default NULL ,
`minute` int( 11 ) default NULL ,
`active` int( 1 ) default NULL ,
PRIMARY KEY ( `id_calendrier` ) 
) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =4 
 
MySQL a répondu: 
 
#1064 - You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT CHARSET=latin1 AUTO_INCREMENT=4' at line 72 | 
Partager