匯入資料表出現下列問題 煩請高手幫忙解答!請說明錯誤原因和解決方法。
=================================================================
錯誤
SQL 語法:
-- --------------------------------------------------------
--
-- 資料表格式: `users`
--
CREATE TABLE `users` (
`id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`account` varchar( 10 ) COLLATE utf8_unicode_ci NOT NULL default '',
`password` varchar( 10 ) COLLATE utf8_unicode_ci NOT NULL default '',
`name` varchar( 10 ) COLLATE utf8_unicode_ci NOT NULL default '',
`sex` char( 2 ) COLLATE utf8_unicode_ci NOT NULL default '',
`year` tinyint( 4 ) NOT NULL default '0',
`month` tinyint( 4 ) NOT NULL default '0',
`day` tinyint( 4 ) NOT NULL default '0',
`telephone` varchar( 20 ) COLLATE utf8_unicode_ci NOT NULL default '',
`cellphone` varchar( 20 ) COLLATE utf8_unicode_ci NOT NULL default '',
`address` varchar( 50 ) COLLATE utf8_unicode_ci NOT NULL default '',
`email` varchar( 50 ) COLLATE utf8_unicode_ci NOT NULL default '',
`url` varchar( 50 ) COLLATE utf8_unicode_ci NOT NULL default '',
`comment` text COLLATE utf8_unicode_ci NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci
AUTO_INCREMENT =2;
MySQL 傳回:
#1289 - The 'InnoDB' feature is disabled; you need MySQL built with 'InnoDB' to
have it workin
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 210.60.11.253