Skip to content

Instantly share code, notes, and snippets.

Created September 13, 2017 08:44
sql command to load local file into table
LOAD DATA LOCAL INFILE 'C:/Users/chris/Documents/StackOverflow/2011/data.csv'
INTO TABLE Stack_Overflow_Survey_Results_2012
FIELDS TERMINATED BY ','
IGNORE 1 ROWS;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment