Answers for "import Data in MySQL without using any other software"

SQL
0

import Data in MySQL without using any other software

Convert file in .csv
CREATE TABLE (name of the table you insert data in)(
columns
);

LOAD DATA INFILE "path\\name.csv" INTO TABLE (name of the table you insert data in)
FIELDS TERMINATED BY "fields terminated by"
LINES TERMINATED BY "lines terminated by"
IGNORE (how many lines to ignore) LINES
(columns)
Posted by: Guest on August-16-2020

Code answers related to "import Data in MySQL without using any other software"

Code answers related to "SQL"

Browse Popular Code Answers by Language