Welcome Guest, Not a member yet? Register   Sign In
importing a csv into the db
#6

[eluser]ray73864[/eluser]
the fields don't have to match field for field, the 'id' field for instance could be field #1 in the DB but field #10 in the CSV file.

what you are doing when naming them is the 'load data infile' goes through and looks for the column in the csv file that you have named with the same name as the field in the DB.

eg:

csv file: 1,"Ray","Australia","blah",123456789
db table: id, name, phone, country

where "blah" is a dummy field that isn't in your database.

in the 'load data infile' you would do:

Code:
LOAD DATA INFILE my.csv REPLACE INTO TABLE contact FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '\"' LINES TERMINATED BY '\\n' (id, name, country, @dummy, phone)

This would pull out every row in the csv file and stick the correct information into the correct columns.


Messages In This Thread
importing a csv into the db - by El Forum - 11-03-2008, 08:27 PM
importing a csv into the db - by El Forum - 11-03-2008, 09:34 PM
importing a csv into the db - by El Forum - 11-04-2008, 04:15 AM
importing a csv into the db - by El Forum - 11-04-2008, 05:06 AM
importing a csv into the db - by El Forum - 11-04-2008, 05:12 AM
importing a csv into the db - by El Forum - 11-04-2008, 05:22 AM
importing a csv into the db - by El Forum - 11-04-2008, 05:26 AM
importing a csv into the db - by El Forum - 11-04-2008, 05:46 AM
importing a csv into the db - by El Forum - 11-04-2008, 05:49 AM
importing a csv into the db - by El Forum - 11-04-2008, 08:42 AM
importing a csv into the db - by El Forum - 11-04-2008, 11:09 AM
importing a csv into the db - by El Forum - 11-04-2008, 11:13 AM
importing a csv into the db - by El Forum - 11-04-2008, 11:27 AM
importing a csv into the db - by El Forum - 11-04-2008, 02:31 PM
importing a csv into the db - by El Forum - 11-04-2008, 02:46 PM
importing a csv into the db - by El Forum - 11-04-2008, 03:00 PM
importing a csv into the db - by El Forum - 11-04-2008, 03:16 PM
importing a csv into the db - by El Forum - 11-04-2008, 03:29 PM
importing a csv into the db - by El Forum - 11-04-2008, 03:39 PM
importing a csv into the db - by El Forum - 11-04-2008, 03:50 PM
importing a csv into the db - by El Forum - 11-04-2008, 03:54 PM
importing a csv into the db - by El Forum - 11-04-2008, 03:59 PM
importing a csv into the db - by El Forum - 11-04-2008, 05:50 PM
importing a csv into the db - by El Forum - 11-04-2008, 05:53 PM
importing a csv into the db - by El Forum - 11-04-2008, 06:00 PM
importing a csv into the db - by El Forum - 11-04-2008, 06:35 PM
importing a csv into the db - by El Forum - 11-04-2008, 06:45 PM
importing a csv into the db - by El Forum - 11-21-2009, 02:32 PM
importing a csv into the db - by El Forum - 11-22-2009, 01:05 AM
importing a csv into the db - by El Forum - 08-04-2011, 01:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB