上一个数据的下一个值

mftmpeh8  于 2021-06-21  发布在  Mysql
关注(0)|答案(3)|浏览(520)

我正在尝试创建一个查询,通过查看数据的前一个结果来查询下一个结果。
所以我的数据是

Train - Station   -  Time
158     Station1     11:10
158     Station1     11:11
158     Station1     11:12
158     Station1     11:13
158     Station1     11:14
158     Station2     11:25
158     Station2     11:26
158     Station2     11:27
158     Station3     11:41
158     Station3     11:42
158     Station3     11:43
158     Station3     11:44
158     Station3     11:45
158     Station4     11:50
158     Station4     11:51
158     Station4     11:52
158     Station4     11:53

假设我在“3号站”
我使用以下查询来找出上一个电台是什么:

SELECT * FROM Train 
WHERE Train = '158' AND Station NOT LIKE 'Station3' 
ORDER BY Time DESC 
LIMIT 1

我想查询下一站是什么,但我真的不知道该怎么查询。有什么建议吗?
编辑:好的,假设我的表有更多关于以前列车运行的信息,我想从中检查下一站是什么。
火车站时间
158站1 10:10
158车站1 10:11
158车站1 10:12
158站1 10:13
158车站1 10:14
158车站2 10:25
158站2 10:26
158站2 10:27
158站3 10:41
158站3 10:42
158站3 10:43
158站3 10:44
158站3 10:45
158站4 10:50
158站4 10:51
158站4 10:52
158站4 10:53
158站5 10:55
158站5 10:56
158站6 10:57
158站6 10:58
158站11:10
158车站11:11
158车站11:12
158站11:13
158站11:14
158车站2 11:25
158车站2 11:26
158站2 11:27
158站3 11:41
158站3 11:42
158站3 11:43
158站3 11:44
158站3 11:45
158站4 11:50
158站4 11:51
158站4 11:52
158站4 11:53
159站11:10
159站11:11
159站11:12
159站11:13
159站11:14
159车站2 11:25
159站2 11:26
159站2 11:27
159站3 11:41
159站3 11:42
159站3 11:43
159站3 11:44
159站3 11:45
159站4 11:50
158站4 11:51
159站4 11:52
159站4 11:53
假设我在158次列车4号站11点53分,我不知道下一站是什么,我想查询下一站是5号站。我该怎么做?

zvms9eto

zvms9eto1#

用一种更简单的方法,使用self join 可以帮你实现。
试试这个:

select t1.* from train t1 
right join train t2 on t1.train=t2.train
where t1.station != 'Station3' and t1.time>(t2.time)
and t2.station='Station3' limit 1 ;

尝试更改 station 两个表上的值 t1 以及 t2 你想要的价值是 Station3 在这种情况下。
现场sql小提琴演示在这里。

ymdaylpp

ymdaylpp2#

如果你只需要知道下一站,你可以使用一个子查询3号站和158次列车的最长时间

select * from 
  my_table 
  where time > ( 
  select max(time) max_time
  from my_table 
  where Train = '158' AND Station = 'Station3' )
  and train = '158'
  order by time limit 1
hk8txs48

hk8txs483#

另一种方法是先找出站点的最大时间。
MySQL8.0+让lead能够很好地获取下一个记录数据。
查询

SELECT
   Table1.Train
 , Table1.next_station AS station
 , Table1.next_station_time AS time
FROM ( 

   SELECT 
     *
     , LEAD(Station) OVER (PARTITION BY Train ORDER BY Time) AS next_station
     , LEAD(Time) OVER (PARTITION BY Train ORDER BY Time) AS next_station_time
   FROM
    Table1
   WHERE
     Train = 158 
)
 AS Table1

WHERE
   Table1.station = 'station3'
 AND
   Table1.station <> Table1.next_station

请参见演示https://www.db-fiddle.com/f/9ld7xznmeuzndrc3dmysut/1
在较旧的mysql版本中,我们需要更具创造性,因为lead不受支持。
模拟lead的最佳方法是使用mysql的用户变量和一个移位的self-left连接
记住mysql用户变量在mysql 5.1中工作+
查询

SELECT 
   current_train AS train
 , next_station AS station
 , next_time AS time
FROM ( 

  SELECT 
      t1.Train AS current_train
    , t1.Station AS current_station
    , t1.Time AS `current_time`
    , t2.Train AS next_train
    , t2.Station AS next_station
    , t2.Time AS next_time
  FROM (
    SELECT 
      *
      , @rownum1 := @rownum1 + 1 AS rownum
    FROM 
      Table1
    CROSS JOIN ( SELECT @rownum1 := 0 ) AS i 
    WHERE
      Train = 158
    ORDER BY 
      Time ASC
  ) AS t1
  LEFT JOIN (
    SELECT 
      *
      , @rownum2 := @rownum2 + 1 AS rownum
    FROM 
      Table1
    CROSS JOIN ( SELECT @rownum2 := 0 ) AS i   
    WHERE
      Train = 158 
    ORDER BY 
      Time ASC 
  ) AS t2
  ON   
   t1.rownum + 1 = t2.rownum
 ) 
 AS records
WHERE
   records.current_station = 'station3'
 AND
   records.current_station <> records.next_station

请参见演示http://sqlfiddle.com/#!9/ff23fc/38号

相关问题