Skip to content

Instantly share code, notes, and snippets.

@ongzexuan
Created June 17, 2019 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ongzexuan/07415be703d5576f9433ddb0730f7766 to your computer and use it in GitHub Desktop.
Save ongzexuan/07415be703d5576f9433ddb0730f7766 to your computer and use it in GitHub Desktop.
Example of LOAD DATA LOCAL INFILE SQL command
LOAD DATA LOCAL INFILE '<FILENAME>'
REPLACE
INTO TABLE <TABLENAME>
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 ROWS;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment