Friday, January 20, 2023

Command line script to import data from csv file to local database mysql

LOAD DATA LOCAL INFILE 'C:/mysql_import/2021_22/[DB_NAME]/gmail_data_attempt_01.csv' 

INTO TABLE [table_name] 

FIELDS TERMINATED BY ',' 

ENCLOSED BY '"'

LINES TERMINATED BY '\n'

IGNORE 1 ROWS; 

No comments:

Post a Comment

Easy way to completely uninstall python

The process is only for Windows OS  1) run the following command from cmd pip list   // list out the all the package pip freeze > require...