Currently i'm trying to import a bunch of records that are in csv format and have this look to them,
When adding the csv file to my database it doesn't seem to interpret the end of the line correctly. I'm using the following settings:
CSV using Load Data
fields terminated by,
Fields enclosed by ,
Fields escaped by \
lines terminated by auto
and the appropriate column names.
After the import the table looks like this,
It seems to take the AL5 from the second record and append it to the last part of the first record, and stops. Can anyone shed light on how I can make this continue throughout the rest of the file?
AL3,South East Bedfordshire,England,ENG,51.8479,-0.4474
AL5,South East Bedfordshire,England,ENG,51.8332,-0.3815
When adding the csv file to my database it doesn't seem to interpret the end of the line correctly. I'm using the following settings:
CSV using Load Data
fields terminated by,
Fields enclosed by ,
Fields escaped by \
lines terminated by auto
and the appropriate column names.
After the import the table looks like this,
AL3 South East Bedfordshire England ENG 51.8479 -0.4474
AL5
It seems to take the AL5 from the second record and append it to the last part of the first record, and stops. Can anyone shed light on how I can make this continue throughout the rest of the file?