I am trying to create a table in mysql but i got a little trouble in my query
CREATE TABLE Mastertbl(
mid int(11) PRIMARY KEY AUTO_INCREMENT NOT NULL,
speciesName varchar(225) NOT NULL,
localName varchar(225) NOT NULL,
familyName varchar(225) NOT NULL,
pila int(11) NOT NULL,
areaNumber int(11) NOT NULL,
plotNumber int(11) NOT NULL,
Longitude double(225) NOT NULL,
Latitude double(225) NOT NULL
);
Error:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ') , Latitude double(225) )' at line 9 –