I need to add i phpMyAdmin the followimg table:
#
# Tabellenstruktur für Tabelle demo_a_iptest
#
CREATE TABLE demo_a_iptest (
'ip' varchar(255) default '0', 'timefeld', timestamp(14) NOT NULL
) ENGINE=MyISAM;
#
# Daten für Tabelle demo_a_iptest
#
but I get the message:
CREATE TABLE demo_a_iptest (
'ip'VARCHAR( 255 ) DEFAULT '0',
'timefeld',
TIMESTAMP( 14 ) NOT NULL
) ENGINE = MYISAM ;
MySQL zice: Documentație
#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 ''ip' varchar(255) default '0', 'timefeld', timestamp(14) NOT NULL
) ENGINE=MyI' at line 7
Can someone to show me what is wrong?
Thanks!