0

次のエラーが表示されます: クエリのエラー (1064): 'utf8_unicode_ci NOT NULL, Vendortext collat​​e 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 ;
4

1 に答える 1

2

6 行目:

`RSSI` varchar(3) utf8_unicode_ci NOT NULL,

する必要があります...

`RSSI` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
于 2013-11-06T01:15:56.660 に答える