-2

エラー

SQL クエリ:

ALTER TABLE `gts` ADD `latitude` DOUBLE( 10 ) NOT NULL ,
ADD `longitude` DOUBLE( 10 ) NOT NULL

MySQL は次のように述べています。

#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 ') NOT NULL,  ADD `longitude` DOUBLE(10) NOT NULL' at line 1 
4

3 に答える 3

0

Double には 2 つのパラメーターが必要です。

ALTER TABLE `gts` ADD `latitude` DOUBLE( 10,0 ) NOT NULL ,ADD `longitude` DOUBLE( 10 ) NOT NULL

参照してください: http://dev.mysql.com/doc/refman/5.6/en/floating-point-types.html

于 2013-05-08T13:02:48.310 に答える