I have an excel file that looks like this -
I am trying to add it into the database but it's not getting inserted properly. This is what I have tried so far -
LOAD DATA INFILE 'F://blood.xls'
INTO TABLE blood_bank
FIELDS TERMINATED BY '\t'
LINES TERMINATED BY '\n'
and
LOAD DATA INFILE 'F://blood.xls'
INTO TABLE blood_bank
This is what it is giving
I am not able to figure out where I am doing wrong. Please help. Thanks in advance.