- thêm
order by
mệnh đề sắp xếp theo ID chuyến đi - tạo
$lastTripID
biến để kiểm tra thời điểm bạn nhận được "chân" từ "chuyến đi mới" - [ khuyến nghị ] sử dụng
join
để chọn dữ liệu từ nhiều bảng
Mã:
<?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);
}