Created
June 19, 2018 04:46
-
-
Save rajitha-bandara/e74d5be20541751a06a8187da8f46130 to your computer and use it in GitHub Desktop.
Mysql Load Data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOAD DATA INFILE 'V:/Downloads/Temp/Homes DB(1).csv' | |
INTO TABLE land_developers FIELDS TERMINATED BY ',' ENCLOSED BY '"' | |
LINES TERMINATED BY '\n' | |
IGNORE 1 LINES | |
(name, email, phone_1, street, suburb, estate) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment