Jump to content

The Proper Way Of Importing Data Into Mysql


prophecym

Recommended Posts

This is bugging me for some time now. I would love some advise.

 

Here is the situation:

 

I have my Contacts table in my database. And using a CSV file, I need to import more people into this table time to time. The problem is, how would you check to see whether you already have the record in the Contacts table? If so, how would you update the record's some or all fields(basically the fields need to be updated) based on the record in the CSV file.

 

This actually gets more complicated when the Companies table gets into the picture. If you have a record in the CSV file which has a company not in the database yet, how would you tell it to create that company, and use that company's id# to add into that record in the Contacts table.

 

I can elaborate this as I get your questions. But right now, I can't logically think of any way of doing this with just using MySQL. It feels like it has to have a PHP script to handle such a job. And I don't know that script.

Link to comment
Share on other sites

Hope this helps. It uses my test tables so you'll need to modify quite a bit

 

Start data (I added unique key on email column as that is being imported)

mysql> SELECT * FROM contact;
+----+--------------+------------+----------------+-------------+
| id | contact_name | company_id | email		  | phone	   |
+----+--------------+------------+----------------+-------------+
|  1 | Fred		 |		  1 | fred@abc.com   | 01614567890 |
|  2 | Mary		 |		  2 | mary@def.com   | 01614567890 |
|  3 | John		 |		  3 | john@jkl.co.uk | 01614567890 |
+----+--------------+------------+----------------+-------------+

mysql> SELECT * FROM company;
+----+---------+
| id | company |
+----+---------+
|  1 | abc	 |
|  2 | def	 |
|  3 | jkl	 |
+----+---------+

CSV Data  (mytest.txt)

name,company,email,phone
john,jkl,john@jkl.co.uk,07784561239
mark,xyz,mark@xyz.com,01215557777
luke,abc,luke@abc.com,02553691478
matthew,qrs,matt@qrs.co.uk,01613216547
mary,qrs,mary@qrs.co.uk,01613216547

 

This the import script I used

DROP TABLE tmp;
CREATE TEMPORARY TABLE tmp (
name varchar(50),
company varchar(50),
email varchar(50),
phone varchar(15));

LOAD DATA LOCAL INFILE 'mytest.txt'
   INTO TABLE tmp
   FIELDS TERMINATED BY ','
   LINES TERMINATED BY '\n'
   IGNORE 1 LINES;

/* insert new companies */
INSERT INTO company (company)
   SELECT DISTINCT tmp.company
   FROM tmp
   LEFT JOIN company ON tmp.company = company.company
   WHERE company.company IS NULL;

/* import contacts */    
INSERT INTO contact (contact_name,company_id,email,phone)
SELECT t.name, c.id, t.email, t.phone
FROM tmp t
INNER JOIN company c ON t.company = c.company
ON DUPLICATE KEY UPDATE
   contact.contact_name = t.name,
   contact.phone = t.phone;

 

And the final results

mysql> SELECT * FROM contact;
+----+--------------+------------+----------------+-------------+
| id | contact_name | company_id | email		  | phone	   |
+----+--------------+------------+----------------+-------------+
|  1 | Fred		 |		  1 | fred@abc.com   | 01614567890 |
|  2 | Mary		 |		  2 | mary@def.com   | 01614567890 |
|  3 | john		 |		  3 | john@jkl.co.uk | 07784561239 |  <- updated
|  4 | luke		 |		  1 | luke@abc.com   | 02553691478 |  +
|  5 | mark		 |		  4 | mark@xyz.com   | 01215557777 |  +
|  6 | matthew	  |		  5 | matt@qrs.co.uk | 01613216547 |  +
|  7 | mary		 |		  5 | mary@qrs.co.uk | 01613216547 |  +
+----+--------------+------------+----------------+-------------+

mysql> SELECT * FROM company;
+----+---------+
| id | company |
+----+---------+
|  1 | abc	 |
|  2 | def	 |
|  3 | jkl	 |
|  4 | xyz	 |  +
|  5 | qrs	 |  +
+----+---------+

Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.