用Regex重命名多个MySQL列可能吗?

时间:2013-10-11 00:52:59

标签: mysql sql

我有一个带有多个表的mysql数据库,这些表的列名如somename_fr,用于存储不同语言的翻译。

我需要将它们重命名为somename_fr_CA,所以只需添加_CA部分即可。

这可以与一次更新所有内容的查询一起使用吗?

1 个答案:

答案 0 :(得分:1)

$tableFields = array();
$result = mysql_query("SHOW COLUMNS FROM mytable");
if (mysql_num_rows($result) > 0) {
    while ($row = mysql_fetch_assoc($result)) {
        if(substr($row['Field'], -3) == "_fr") {
            mysql_query("alter table tablename change `".$row['Field']."` `".$row['Field']."_CA`) ;
        }
    }
}

为什么要使用正则表达式?只需使用SHOW COLUMNS查询并循环结果,找出需要重命名的表名并执行查询。在循环中,我使用substr来获取fieldname的最后3个字符,如果它们等于“_fr”,则会触发另一个SQL查询:ALTER TABLE

资源:

  1. 列出mysql表字段http://php.net/manual/en/function.mysql-list-fields.php
  2. substr()http://php.net/manual/en/function.substr.php mysql
  3. alter table:http://dev.mysql.com/doc/refman/5.1/en/alter-table.html