In the workbench mySQL database, one of the tables has latitude, longitude, and environment attributes
lat: decimal (10.8)
lng: decimal (11.8)
area: int (4)
I am trying to import data from a CSV file into this table
ERROR 1366: 1366: Incorrect decimal value: '' for column 'lat' at row 1 SQL Statement: ERROR 1366: 1366: Incorrect integer value: '' for column 'district' at row 1 SQL Statement: INSERT INTO `db`.`myTable` (`id`, `name_en`, `icon`, `lat`, `lng`, `district`, `city`, `postal_code`) VALUES ('686', 'Name',?, '', '', '','1', 'PO Box 1111')
decimal mysql integer
Maha
source share