I am using the following statement in order to insert data from file.
load data infile 'filename.csv'
ignore
into table tbl (clo);
I need to ignore the blank lines in the file. How can I do this.
|
I am using the following statement in order to insert data from file.
I need to ignore the blank lines in the file. How can I do this. |
|||
|
|
The \r is necessary on Windows files, if you're running this on *nix you shouldn't need them. |
|||
|