fejl i sql sætning
Bruger case studio til at designe mine databaser.programmet har bla. genereret denne sætning
Create table Kunde (
kunde_id Int UNSIGNED NOT NULL ,
post_nr Bigint UNSIGNED NOT NULL DEFAULT 4 ,
firmanavn Char(30) NOT NULL ,
vejnavn Char(30) ,
telefon Bigint UNSIGNED DEFAULT 8 ,
mobil Bigint UNSIGNED ,
fax Bigint UNSIGNED ,
email Char(30) NOT NULL ,
password Char(30) UNSIGNED NOT NULL ,
Primary Key (kunde_id)) TYPE = MyISAM;
når jeg vil køre den på min DB får jeg
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 'UNSIGNED NOT NULL , Primary Key (kunde_id)) TYPE = MyISAM' at l
