ฉันไม่เข้าใจคำตอบที่คนอื่นให้ไว้สำหรับคำถามที่คล้ายกันยกเว้นคำถามที่ชัดเจนที่สุดเช่นคำถามด้านล่าง:
mysql> SET GLOBAL local_infile=1;
Query OK, 0 rows affected (0.00 sec)
mysql> SHOW GLOBAL VARIABLES LIKE 'local_infile';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| local_infile | ON |
+---------------+-------+
1 row in set (0.01 sec)
จากนี้ฉันหมายถึงรหัสที่ถูกต้องให้ ฉันยินดีเป็นอย่างยิ่งถ้ามีคนสามารถแนะนำฉันทีละขั้นตอนสิ่งที่ฉันต้องทำเพื่อเปิดใช้งานข้อมูลในเครื่องที่ด้าน "ไคลเอนต์" และ "เซิร์ฟเวอร์" ดูเหมือนว่าฉันได้เปิดใช้งานข้อมูลในเครื่องที่ฝั่งไคลเอ็นต์ แต่ฉันไม่รู้ว่าต้องใช้คำแนะนำใดเพื่อให้คอมพิวเตอร์ของฉันเปิดใช้งาน "ฝั่งเซิร์ฟเวอร์" ฉันไม่เข้าใจเทคโนโลยีเลยและฉันแค่ต้องการไปยังจุดที่ข้อมูลถูกอัปโหลดไปยังฐานข้อมูล MySQL
ERROR 3948 (42000): Loading local data is disabled; this must be enabled on both the client and server sides
CREATE TABLE toys (
uniq_id VARCHAR(1000),
product_name VARCHAR(1000),
manufacturer VARCHAR(1000),
price VARCHAR(1000),
number_available_in_stock VARCHAR (1000),
number_of_reviews INT,
number_of_answered_questions INT,
average_review_rating VARCHAR(1000),
amazon_category_and_sub_category VARCHAR(1000),
customers_who_bought_this_item_also_bought VARCHAR(1000),
description VARCHAR(1000),
product_information VARCHAR(1000),
product_description VARCHAR(1000),
items_customers_buy_after_viewing_this_item VARCHAR(1000),
customer_questions_and_answers VARCHAR(1000),
customer_reviews VARCHAR(1000),
sellers VARCHAR(1000)
);
LOAD DATA LOCAL INFILE ‘/Users/BruddaDave/Desktop/amazonsample.csv’ INTO TABLE toys
FIELDS TERMINATED BY ‘,’
LINES TERMINATED BY ‘\n’
IGNORE 1 LINES
(uniq_id, product_name, manufacturer, price, number_available_in_stock, number_of_reviews, number_of_answered_questions, average_review_rating, amazon_category_and_sub_category, customers_who_bought_this_item_also_bought, description, product_information, product_description, items_customers_buy_after_viewing_this_item, customer_questions_and_answers, customer_reviews, sellers)
;
ฉันแค่ต้องการนำเข้าไฟล์. csv ไปยัง MySQL โดยใช้เชลล์บรรทัดคำสั่ง