-
order by
を追加 旅行IDで並べ替える句 -
$lastTripID
を作成します 「新しい旅行」から「足」を取得するときにチェックする変数 - [推奨 ]
join
を使用します 複数のテーブルからデータを選択するには
コード:
<?php
$legsQuery = "
select
trips.tripID,
legs.depart,
legs.arrive
from
legs
inner join trips on trips.tripID = legs.tripID
order by
trips.tripID
";
$legsQueryResult = mysql_query($legsQuery) or die("QUERY LEG ERROR: " . mysql_error());
$lastTripID = null;
while ($row = mysql_fetch_assoc($legsQueryResult)) {
if ( $row['tripID'] !== $lastTripID ) {
echo $row['tripID'], "\n";
$lastTripID = $row['tripID'];
}
print_r($row);
}