order by
ट्रिप आईडी के आधार पर छाँटने के लिए क्लॉज- बनाएं
$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);
}