나는 당신이 사용하기를 바랍니다 LOAD DATA INFILE
.
LOAD DATA LOCAL INFILE
대신 사용하십시오 LOAD DATA INFILE
.
다른 문제는 다음과 같습니다. MySQL LOAD DATA 링크를 방문하십시오 .
MySQL에 로그인하면 다음과 같이하십시오.
abdul@xmpp3:~/Desktop/Jiva$ mysql -uroot -p --local-infile
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 257
Server version: 5.5.29-0ubuntu0.12.04.1-log (Ubuntu)
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use mydb;
mysql> LOAD DATA LOCAL INFILE '/home/abdul/Desktop/STATISTIC_T.csv' INTO TABLE STATISTIC_T FIELDS TERMINATED BY '|' ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 1 LINES;
이제를 사용하여 CSV를로드하십시오 . 보안상의 이유로 새 MySQL 버전에 로드하기 전에 LOAD DATA LOCAL INFILE
사용해야 합니다.--local-infile
CSV