fout in de MySQL nieuwsysteem
Remy Sanderink
09/11/2012 16:24:40Hallo.
Als ik mijn SQL wil invoeren voor mijn nieuwssysteem krijg ik deze fout:
#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 'TYPE=MyISAM' at line 9
Bij deze Sql code.
CREATE TABLE nieuws(
id INT( 11 ) NOT NULL AUTO_INCREMENT ,
titel VARCHAR( 255 ) NOT NULL DEFAULT '',
door VARCHAR( 255 ) NOT NULL DEFAULT '',
TEXT TEXT NOT NULL ,
datum VARCHAR( 10 ) NOT NULL DEFAULT '',
tijd VARCHAR( 5 ) NOT NULL DEFAULT '',
PRIMARY KEY ( id )
) TYPE = MYISAM ;
Wie weet meer ?
Als ik mijn SQL wil invoeren voor mijn nieuwssysteem krijg ik deze fout:
#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 'TYPE=MyISAM' at line 9
Bij deze Sql code.
CREATE TABLE nieuws(
id INT( 11 ) NOT NULL AUTO_INCREMENT ,
titel VARCHAR( 255 ) NOT NULL DEFAULT '',
door VARCHAR( 255 ) NOT NULL DEFAULT '',
TEXT TEXT NOT NULL ,
datum VARCHAR( 10 ) NOT NULL DEFAULT '',
tijd VARCHAR( 5 ) NOT NULL DEFAULT '',
PRIMARY KEY ( id )
) TYPE = MYISAM ;
Wie weet meer ?
PHP hulp
24/11/2024 23:45:00Remy Sanderink
09/11/2012 16:32:09- SanThe -
09/11/2012 16:37:18- Aar - op 09/11/2012 16:30:50:
En een datum hoort niet in varchar, maar zou je moeten ombouwen naar DATETIME....
En tijd dus ook niet.