Skip to content

Instantly share code, notes, and snippets.

@ramingar
Created May 22, 2020 10:34
Show Gist options
  • Save ramingar/d78814eafc8dbf43b54693e3cd0704a7 to your computer and use it in GitHub Desktop.
Save ramingar/d78814eafc8dbf43b54693e3cd0704a7 to your computer and use it in GitHub Desktop.
Importa un csv a una tabla mysql #mysql #import #csv #terminal
 load data local infile 'file.csv' into table table
 fields terminated by ','
 enclosed by '"'
 lines terminated by '\n'
 (column1, column2, column3,...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment