Using the code below, it was susccessful in inserting data from csv files. However, it will not insert 100% of the data (row).. 1 or 2 records (row) data was missing...
Sample .. the number of row data is 20.. it will insert only 19 records. Please help in correcting this codes .. Thank you
LOAD DATA LOCAL INFILE 'c:/tmp/Excelfile.csv'
INTO TABLE tablecovdata
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n';
IGNORE 0 ROWS;