我有一张桌子 城市名表(城市表)
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'
?
感谢您的帮助。
答案 0 :(得分:2)
使用UPDATE with join
UPDATE cityTable a
INNER JOIN codeTable b
ON a.ID = b.ID
SET a.codeNumber = b.codeNumber
但我怀疑ID
是AUTO_INCREMENT
列,如果是的话,
UPDATE cityTable a
INNER JOIN codeTable b
ON a.cityName LIKE CONCAT('%', b.city,'%')
SET a.codeNumber = b.codeNumber
答案 1 :(得分:0)
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));
}