Skip to content

Instantly share code, notes, and snippets.

@ken-muturi
Created May 26, 2014 11:40
Show Gist options
  • Save ken-muturi/f0ac7029d2943fc07b02 to your computer and use it in GitHub Desktop.
Save ken-muturi/f0ac7029d2943fc07b02 to your computer and use it in GitHub Desktop.
import CSv file to Mysql
LOAD DATA LOCAL INFILE 'G:/Floyd/small/small.csv' INTO TABLE `csv_data`
FIELDS TERMINATED BY ','
OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\r'
IGNORE 1 LINES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment