create A table in Mysql
CREATE TABLE Address_Book (  
    ID INT NOT NULL PRIMARY KEY AUTO_INCREMENT,   
    NAME VARCHAR(35) NOT NULL,   
    Email VARCHAR(35),  
    Mobile INT(12),   
    Address VARCHAR(45)  
); 
than create a csv file at location D:\\csvfiles\\address.csv
paste the below content into the csv file
ID, Name, Email, Mobile, Address
"1","Tushar Bhadwaj","jorge@abc.com","4848488","123 Park Street"
"2","Peter","peter@gma.com","4848485","321 Fake Avenue"
"3","Michael Clark","clark@rt.com","4848487","321 Park Avenue"
"4","James Franklin","james@lk.com","4848489","321 Fake Avenue"
enter image description here
And than execute the below command for import the csv file content---
LOAD DATA LOCAL INFILE 'D:\\csvfiles\\address.csv' 
INTO TABLE Address_Book 
FIELDS TERMINATED BY ',' 
ENCLOSED BY '"'
 LINES TERMINATED BY '\r\n'
  IGNORE 1 ROWS;
All the detail already provided in the page .In case you can't understand
you can click on below link .The content is same as on page.
https://youtu.be/Gp7XYM_Hr3c