Als ik met phpMyAdmin een tabel wil maken, krijg ik altijd deze fout, maar hoe komt dat?
Fout
SQL-query:
CREATE TABLE `sites` (
`personID` INT( 111 ) NOT NULL ,
`site` SET( 222 ) NOT NULL ,
`ond` SET( 333 ) NOT NULL ,
`hosting` SET( 111 ) NOT NULL ,
`hostprijs` SET( 111 ) NOT NULL ,
`user` SET( 111 ) NOT NULL ,
`pass` SET( 111 ) NOT NULL ,
`ftp` SET( 111 ) NOT NULL ,
`client` SET( 333 ) NOT NULL ,
`opm` SET( 444 ) NOT NULL ,
`prijs` SET( 111 ) NOT NULL ,
`datum` VARCHAR( 111 ) NOT NULL
) ENGINE = MYISAM
MySQL retourneerde: Documentatie
#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 '222) NOT NULL, `ond` SET(333) NOT NULL, `hosting` SET(111) NOT NULL, `hostprijs`' at line 1
1.273 views