i have a usertable which includes a field named zip (postal code) I also have a geo table with latitude, longitude values, based upon zipcodes.

so:

usertable 
table_1 contains fields: zip, latitude,longitude (in last 2 fields all values are NULL)
geotable:
table_2 contains fields: zip, latitude,longitude

The zipcode in table_1 has this format: 1111 AA (4 numbers, 2 letters, usually split by empty character)

The zipcode in table_2 has format: 1111 (only four numbers)

I am trying to find out how an update query should look like?

I want to update the usertable with the values from the geotable, so a search query can be done without any joins. Search queries are the most used queries on this site, The updates/checks seldom.

Thanks in advance for any help!

link|improve this question

1  
Terrible DB-schema. Redesign it first: duplicated data, combined field is contra even 1st Normal Form – Lazy Badger Oct 10 '11 at 14:55
it is, but it isn't mine. in the usertable theire is a field zip, i just added a geotable, and want to add the geo data in the same table. I only have the geo-table as duplicated data table.Their is a performance reason for not using the geotable for the search query. – Terradon Oct 10 '11 at 17:36
feedback

3 Answers

up vote 2 down vote accepted

You could write

UPDATE table_1 SET
  latitude = (SELECT latitude FROM table_2 WHERE table_1.zip LIKE CONCAT(table_2.zip, '%')),
  longitude = (SELECT longitude FROM table_2 WHERE table_1.zip LIKE CONCAT(table_2.zip, '%'));

Unfortunately I don't believe there is syntax quite similar to what Colin is suggesting. You may find it more efficient to simply select the values from table_2 first and then insert them.

link|improve this answer
+1 Works correctly for me: sqlize.com/a57jbz3Tu6 – mellamokb Oct 10 '11 at 14:59
Thanks for the sqlize.com reference! Very useful. – Michael Mior Oct 10 '11 at 15:22
I have used this solution, seems to work (values not tested yet, but the fields have been udate), but.....my original values are decimals like: 52.35993326000000000000 but the udated values are whole numbers only? – Terradon Oct 10 '11 at 17:33
had to add (23,20) to decimal and then it worked fine! The inner join solution did not work? got 0 rows affected? – Terradon Oct 10 '11 at 18:16
Thanks for this solution, but for developing my own mysql skills, please could you explain to me what table_1.zip LIKE CONCAT(tabel_2.zip, '%') exactly does? – Terradon Oct 10 '11 at 18:25
show 1 more comment
feedback

You can use an UPDATE ... JOIN clause to join the tables and perform the update:

update
    usertable ut inner join geotable gt on
        ut.zip like concat(gt.zip, '%')
    set ut.latitude = gt.latitude,
        ut.longitude = gt.longitude;

Demo: http://www.sqlize.com/398E9CKddr

link|improve this answer
Didn't realize you could use joins in an UPDATE. This is definitely a better answer. – Michael Mior Oct 10 '11 at 15:23
This one did not work for me, got 0 rows affected. Probably due to "on ut.zip like concat(gt.zip, '%') " ut.zip and gt.zip have different formats, unfortunately. So i think therefore the inner join won't work because of these differences? – Terradon Oct 10 '11 at 18:23
ut.zip like concat(gt.zip, '%') means the two fields match if they contain the same starting characters. So a ut.zip of 1111 AA will match a gt.zip of 1111 in the join because the starting characters of ut.zip all match the entire string of gt.zip, which is I believe how your spec was defined. Did you look at the sample code I linked to? How is your data different from the example code? – mellamokb Oct 10 '11 at 18:29
table: lp_relations_addresses` zip varchar(10) default NULL, latitude decimal(23,20) default NULL, longitude decimal(23,20) default NULL, ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ; records like: zip: 9641 GD latitude: NULL longitude: NULL TABLE jos_geodb postalcode int(5) NOT NULL default '0', latitude decimal(23,20) NOT NULL default '0.00000000000000000000', longitude decimal(23,20) NOT NULL default '0.00000000000000000000' ) ENGINE=MyISAM DEFAULT CHARSET=utf8; records like: postalcode: 1000 latitude: 52.35402048000000000000 longitude:4.91704430000000000000 – Terradon Oct 10 '11 at 18:41
This is confusing... which one is Table_1 and which one is Table_2? It's much easier if you just use the real table names from the start. In my code above, I believe usertable = table_1 = Ip_relations_addresses, and geotable = table_2 = postalcode. – mellamokb Oct 10 '11 at 18:49
show 1 more comment
feedback

Untested, and I may not have the syntax quite right, but this is the principle:

UPDATE table_1  COLUMNS(latitude, longitude) VALUES (
   SELECT latitude, longitude FROM table_2 
      where table_1.zip LIKE CONCAT(table_2.zip, ' %'));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.