这就是我现在正在做的事情,如何在不诉诸子查询且不使用 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!') ");
}
?>