keepingbusy
Programmer
Sorry if this sounds way below the expertise of you guys, but I am trying to understand how this is done.
I have a database containing tables
I want to upload a csv file into one of those tables within the database to update it
I dont want to do this via myphpadmin due to file size limit
I want to do the upload via MySql
So I understand there are a few commands:
Code:
mysql -u username -p password database_name < file_name
Code:
LOAD DATA INFILE 'C:/mytable.csv' INTO TABLE myproducts FIELDS TERMINATED BY ',';
Is there anything you experts need to know or can you please give me some guidance?
Thank you