import in mysql without a software

Solutions on MaxInterview for import in mysql without a software by the best coders in the world

showing results for - "import in mysql without a software"
Karl
06 Aug 2020
1LOAD DATA INFILE "name.csv" INTO TABLE "TableName"
2FIELDS TERMINATED BY "sign"
3LINES TERMINATED BY "sign"
4IGNORE 1 LINES
5(columns);