我有这个SQL查询
select count(n.msisdn)FULL_KYC,decile_group
来自表1
我得到的结果是数字(FULL_KYC)和decile_group(从十分位数1到十分位数10)。我需要能够将此结果添加到php中的表中,包括每列总计的新行。我正在使用oracle数据库并远程连接。 非常感谢
答案 0 :(得分:0)
简短的回答是你需要一个带php和oracle扩展的web服务器。然后,您可以使用oracle连接器进行Php并启动查询,检索数据并使用html表显示它们。
以下是一个示例:http://php.net/manual/en/oci8.examples.php。
再见
要完成完整的请求,您可以更改
print "<table border='1'>\n";
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
print "<tr>\n";
foreach ($row as $item) {
print " <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) : " ") . "</td>\n";
}
print "</tr>\n";
}
print "</table>\n";
在
print "<table border='1'>\n";
$finalRow = array();
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
print "<tr>\n";
foreach ($row as $key => $item) {
$finalRow[$key] = (isset($finalRow[$key]) ? $finalRow[$key] : 0) + $item;
print " <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) : " ") . "</td>\n";
}
print "</tr>\n";
}
print "<tr>\n";
foreach ($finalRow as $item) {
print " <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) : " ") . "</td>\n";
}
print "</tr>\n";
print "</table>\n";