Skip to content

Instantly share code, notes, and snippets.

@onpaws
Created October 2, 2014 16:37
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 onpaws/3223c89fd017481658a1 to your computer and use it in GitHub Desktop.
Save onpaws/3223c89fd017481658a1 to your computer and use it in GitHub Desktop.
Load CSV from SQL
LOAD DATA INFILE '/tmp/stats-2014.csv'
INTO TABLE orig_stats
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\r\n'
IGNORE 1 LINES ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment