1

这就是我现在正在做的事情,如何在不诉诸子查询且不使用 php.ini 的情况下做到这一点。我可以直接在 phpmyadmin 中运行它:

   <?php

    $query = mysql_query(" SELECT node_id FROM embeds ");
    while($row = mysql_fetch_assoc($query)) {
        $node_id = $row['node_id'];
        mysql_query(" INSERT INTO node_teaser(node_id, content) VALUES('$node_id', 'This is the teaser!') ");
    }

    ?>
4

1 回答 1

3
INSERT INTO node_teaser(node_id, content)
SELECT node_id, 'This is the teaser!' FROM embeds;
于 2012-05-10T22:07:17.420 回答