Problème MySQL code

Imillix Messages postés 39 Statut Membre -  
ElementW Messages postés 5690 Statut Contributeur -
Bonjour,
j'ai un problème avec mon code SQL, quand je l'écrit, MySQL me retourne :

#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 ')' at line 6

Mon code :

CREATE TABLE membre (
	id int(11) NOT NULL auto_increment,
	login text NOT NULL,
	pass_md5 text NOT NULL,
	PRIMARY KEY  (id),
)
A voir également:

1 réponse

ElementW Messages postés 5690 Statut Contributeur 1 224
 
'lut, y'a une virgule en trop après
PRIMARY KEY  (id)
, vires la. Et hop, ça marche!
1