如何更新MySQL SET值WHERE某些列内容LIKE另一个表列内容

时间:2013-01-18 16:37:59

标签: mysql insert-update sql-like

我有一张桌子 城市名表(城市表)

idcity  |   cityname     |  statename  |    codenumber
   1    |   Los Angeles  |   state2    |     ...
   2    |   New York     |   state3    |     ...
   3    |   New Jersey   |   state3    |     ...

代码编号城市表(代码表)

  id |  city     | codenumber
   1 |  angeles  |   031
   2 |  york     |   064
   3 |  jersey   |   075

如何SET or INSERT or UPDATE data 'codenumber' FROM 'codetable' fields INTO 'codenumber' column FROM citytable WHERE 'city' FROM codetable LIKE '%cityname%' FROM 'citytable'? 感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

使用UPDATE with join

UPDATE  cityTable a
        INNER JOIN codeTable b
            ON a.ID = b.ID
SET     a.codeNumber = b.codeNumber

但我怀疑IDAUTO_INCREMENT列,如果是的话,

UPDATE  cityTable a
        INNER JOIN codeTable b
            ON a.cityName LIKE CONCAT('%', b.city,'%')
SET     a.codeNumber = b.codeNumber

答案 1 :(得分:0)

@JW和我同时或多或少地到达了以下,但JW有时间优势!

UPDATE citytable a
INNER JOIN codetable b ON  a.cityname LIKE CONCAT('%',b.city,'%')
SET a.codenumber = b.codenumber

摩根要求提供一个php示例,在SELECT中执行此操作,然后使用UPDATE进行循环更新。

<?php
#Fill out the four variables below.
#
#This is just an example!
#If you are going to use this for real, you want to put the top
#4 variables in a separate file and include that file into this
#file via phps include directive.  That separate file needs
#to be in a tightly security controlled directory, because
#your database password is in the file.
#
#For security reasons, the variables below must not come from
#user supplied data (from a POST or GET or the SESSION variables).
#
$dbName = '';
$hostName = '';
$username = '';
$password = '';


$dbh = new PDO("mysql:dbname=$dbName;host=$hostName",
    $username, $password);
$dbh->setAttribute(PDO_ATTR_ERRMODE, PDO_ERRMODE_EXCEPTION);
$sqlSelect = "
    SELECT cityname, codenumber
    FROM city a
    INNER JOIN codetable b ON 
        a.cityname LIKE CONCAT('%',b.city,'%');";
$sqlUpdate = "
    UPDATE citytable SET codenumber = ? WHERE cityname = ?";
$rows = $dbh->query($sqlSelect)->fetchAll();
$sth = $dbh->prepare($sqlUpdate);
foreach($rows as $row) {
    $codeNumber = $row['codenumber'];
    $cityName = $row['cityname'];
    $sth->execute(array($codeNumber,$cityName));

}