隣り合った 2 つの異なるテーブルから列を取得したいと考えています。
私は以下のようにPHPコードを持っています:
<table>
<tr>
<th>Date</th>
<th>Performance A </th>
<th>Performance B </th>
</tr>
$sql = "select date, Aperformance from table1 group by date";
$sql1 = "select date, Bperformance from table2 group by date";
$result = mssql_query($sql);
while ($column = mssql_fetch_array($result))
{
echo "<tr><td>".$column[0]."</td>";
echo "<td>".$column[1]."</td></tr>";
}
そして、これは以下のような出力を生成します:
Date | Performance A | Performance B
01/05/12 | 40% |
02/05/12 | 30% |
03/05/12 | 25% |
ここで、クエリ $sql1 の 3 番目の列を埋めたいと思います。$sql1 の日付列は必要ありません。2 番目の列 Bperformance がここに入れる必要があります。どうすればそれができますか?