PHP interesse |
|
Hallo, ik heb hier een sql code, maar als ik deze invoeg in me db dan geeft hij een fout weer!
wat is er fout?
CREATE TABLE `lyrics_songs` (
`id` int(11) NOT NULL auto_increment,
`album` int(11) NOT NULL default '0',
`name` varchar(30) NOT NULL default '',
`text` text NOT NULL,
PRIMARY KEY (`id`)
UNIQUE KEY `name` (`name`)
) TYPE=MyISAM;
CREATE TABLE `lyrics_songs` ( `id` int(11) NOT NULL auto_increment, `album` int(11) NOT NULL default '0', `name` varchar(30) NOT NULL default '', `text` text NOT NULL, UNIQUE KEY `name` (`name` )) TYPE=MyISAM;
De fout:
Citaat: 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 'UNIQUE KEY `name` (`name`)
) TYPE=MyISAM' at line 7
|