SELECT startpoint, destinationpoint, vehicletype, min( rushhour ) AS time, distance, detail
FROM arc
GROUP BY startpoint, destinationpoint
HAVING startpoint = 'มหาวิทยาลัยธุรกิจบัณฑิตย์'
AND destinationpoint = 'ซอฟต์แวร์ปาร์ค'
SELECT startpoint, destinationpoint, vehicletype, time, distance, detail
FROM arc
WHERE startpoint = 'มหาวิทยาลัยธุรกิจบัณฑิตย์'
AND destinationpoint = 'ซอฟต์แวร์ปาร์ค'
ORDER BY time ASC
LIMIT 1