當試圖在我的數據庫中創建這個表,我得到一個錯誤:phpMyAdmin的 - 錯誤#1064
#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 'unsigned NOT NULL default '0', PRIMARY KEY (reminder_id), KEY reminder_id (rem' at line 5
CREATE TABLE reminder_events (
reminder_id bigint(20) unsigned NOT NULL auto_increment,
reminder_name varchar(255) NOT NULL default '',
reminder_desc text,
reminder_date varchar(8) unsigned NOT NULL default '0',
PRIMARY KEY (reminder_id),
KEY reminder_id (reminder_id)
) TYPE=MyISAM;
有人能看到我在做什麼錯?
感謝您的。 – 2011-01-13 11:32:27
@恩運動 - 沒問題。 :-) – 2011-01-13 11:34:03