次のエラーが表示されます: クエリのエラー (1064): 'utf8_unicode_ci NOT NULL, Vendor
text collate utf8_unicode_ci NOT NULL, ' at line 6付近の構文エラー
6行目を削除しようとしましたが、別の場所で同じエラーが発生しています。
CREATE TABLE IF NOT EXISTS `wifiScan` (
`ID_frame` int(11) NOT NULL auto_increment,
`TimeStamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
`MAC` varchar(17) collate utf8_unicode_ci NOT NULL,
`AP` text collate utf8_unicode_ci NOT NULL,
`RSSI` varchar(3) utf8_unicode_ci NOT NULL,
`Vendor` text collate utf8_unicode_ci NOT NULL,
PRIMARY KEY (`ID_frame`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;