You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 16, 2021. It is now read-only.
Small tools and script to remember - here be dragons
MySQL
Import data from a /standard/ csv file into a table
LOAD DATA LOCAL INFILE "infile.csv"
INTO TABLE table
COLUMNS TERMINATED BY ','
OPTIONALLY ENCLOSED BY '"'
ESCAPED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 LINES;
About
Small tools and script to remember - here be dragons