php mysql首先使用最后一行之间的值差异

时间:2017-02-21 11:08:11

标签: php

我显示数据使用Php。现在我想区分数据表第一行第二列和最后一行第二列。 我添加图像。怎么做? enter image description here

1 个答案:

答案 0 :(得分:0)

它将按car_number分组,然后得到它的最大距离和最小距离,并且会做出差异,并在d_interval中给出所需的结果。 我希望这会对你有帮助!

SELECT t1.car_number, min(t1.distance) AS min_distance,
   max(t1.distance) AS max_distance,
   max(t1.distance) - min(t1.distance) AS d_interval
FROM table_name t1
GROUP BY t1.car_number