שבוע טוב לכל העוזריםיש לי את השאילתא הזאת:
CREATE TABLE message (
id int(11) NOT NULL auto_increment,
read char(3) NOT NULL default '',
show char(3) NOT NULL default '',
from varchar(50) NOT NULL default '',
to varchar(50) NOT NULL default '',
subject varchar(50) NOT NULL default '',
msg tinytext NOT NULL,
time timestamp(14) NOT NULL,
readconfirm char(3) NOT NULL default '',
sr char(1) NOT NULL default '',
linkid varchar(32) NOT NULL default '',
PRIMARY KEY (id),
UNIQUE KEY id (id),
KEY id_2 (id)
) TYPE=MyISAM;
ואני מקבל את השגיאה הזאת:
#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 'read char(3) NOT NULL default '',
show char(3) NOT NULL default '',
from v' at line 3
אני טיפה חדש בכל הקטע של הMYSQL
מישהו יכול להגיד לי מה הבעיה?