当我循环遍历父 table 的行时如何检索相关的子行?

How to retrieve related child rows as I loop through rows from the parent table?

我需要 运行 子查询(或其他),因为我遍历外部查询的行。我已经尽我所能地尝试了,但一直无法让它发挥作用。

这是我的 while 循环:

$sql = "SELECT * FROM $db ORDER BY Created DESC";
$ps = $pdo->prepare($sql);
if (!$ps) {
    echo "\nPDO::errorInfo():\n";
    print_r($dbh->errorInfo());
}else{
    $ps->execute();
    $ps->setFetchMode(PDO::FETCH_OBJ);
    while($row = $ps->fetch()) {

        echo "<tr>\n";

            echo "  <td>". $row->SARNo . "</td>\n";
            echo "  <td>". $row->Quals . "</td>\n";
            echo "  <td>". <!-- how do I insert results of $query here? --> . "</td>\n";
            echo "  <td>". $row->CAGE . "</td>\n";
            echo "  <td>". $row->Supplier_Name . "</td>\n";
            echo "  <td>". $row->Assigned_To_HEBCO . "</td>\n";
            echo "  <td>". $row->SAR_Completed . "</td>\n";

        echo "</tr>\n";

    }
}

这里是获取当前记录的关联 NSN 的查询:

$query = "SELECT NSN_Src.NSN FROM NSN_Src INNER JOIN (SAR2 INNER JOIN REL_SAR_NSN ON SAR2.ID = REL_SAR_NSN.SAR_ID) ON NSN_Src.ID = REL_SAR_NSN.NSN_ID WHERE (((SAR2.ID)=$uid))";

我对 Access 不是很熟悉,更不熟悉将 Access 与 PHP 一起使用,所以这个小项目已经 "fun"(至少可以说)由于缺少 PHP 函数(与 MySQL 可用的过多功能相比)。

非常感谢任何帮助,一个可行的解决方案将使您按照我的意愿获得我 50% 的世俗商品(这可能是很多债务,因此如果您愿意,可以拒绝)。 :)

您可能已经发现,Access SQL 没有像 MySQL 的 GROUP_CONCAT() 那样的聚合函数。因此,您需要让 PHP 代码使用第二个准备好的语句和一个内部循环来创建子项列表,如下所示:

<?php
header('Content-Type: text/html; charset=windows-1252');
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>PDO example</title>
</head>
<body>
<?php
$connStr = 
        'odbc:' .
        'Driver={Microsoft Access Driver (*.mdb)};' .
        'Dbq=C:\Users\Public\__SO\28502544.mdb;' .
        'Uid=Admin;';
$db = new PDO($connStr);
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$sqlParent = "SELECT ID, ParentName FROM Parent";
$psParent = $db->prepare($sqlParent);

$sqlChild = "SELECT ChildName FROM Child WHERE ParentID = ?";
$psChild = $db->prepare($sqlChild);
$psChild->bindParam(1, $parentID, PDO::PARAM_INT);

echo '<table border=1>';
$psParent->execute();
while ($rowParent = $psParent->fetch()) {
    echo '<tr>';
    echo '<td>';
    echo $rowParent["ParentName"];
    echo '</td>';
    // collect child items into array
    $parentID = $rowParent["ID"];
    $psChild->execute();
    $childItems = array();
    while ($rowChild = $psChild->fetch()) {
        $childItems[] = $rowChild["ChildName"];
    }
    // string together and insert into table cell
    echo '<td>';
    echo implode(", ", $childItems);
    echo '</td>';
    echo '</tr>';
}
echo '</table>';
?>
</body>
</html>