Step 2: Load company profile data
Download companylist.company
table by either using a MySQL client (such as Sequel Pro, MySQLWorkbench) or by using the LOAD DATA command.
If you are using a MySQL client, open your MySQL client and navigate to the menu item for importing data from a file.company
table you created in the previous step.
If you are using a terminal, run the LOAD DATA
command to load the data into the company table you created in the previous section.
LOAD DATA INFILE '/path/to/companylist.csv'INTO TABLE companyFIELDS TERMINATED BY ',' ENCLOSED BY '"'LINES TERMINATED BY '\r\n'IGNORE 1 LINES;
Last modified: May 12, 2021