over 9 years ago
Hello Readers!
MySQL have this load data function, where we can insert data to a table from external files like csv, txt etc.
The process is quite simple, 1st lets login to mysql via terminal/console.
Enters username and password of mysql
Now lets run the command.
- mysql> LOAD DATA LOCAL INFILE /var/www/site/site_users.csv
- INTO TABLE site_users FIELDS
- TERMINATED BY ;
- ENCLOSED BY
- LINES TERMINATED BY \n
- IGNORE 1 LINES;
mysql> LOAD DATA LOCAL INFILE /var/www/site/site_users.csv INTO TABLE site_users FIELDS TERMINATED BY ; ENCLOSED BY LINES TERMINATED BY \n IGNORE 1 LINES;
You will see this if command ran successfully:
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)