gpt4 book ai didi

mysql - 测量所有先前日期行的最大值

转载 作者:行者123 更新时间:2023-11-29 01:31:47 25 4
gpt4 key购买 nike

我想添加一列 (maxPrice),用于测量所有先前日期行的另一列(价格)的最大值。例如 - 表 1 有以下数据:

     Date       Price   
......................
12/19/2008 5
12/18/2008 7
12/17/2008 5
12/16/2008 3
12/15/2008 4

希望输出为:

  Date     Price    MaxPrice
.................................
12/19/2008 5 7
12/18/2008 7 7
12/17/2008 5 5
12/16/2008 3 4
12/15/2008 4 4

最佳答案

SELECT
`Date`, Price, (SELECT MAX(Price) FROM yourTable t2 WHERE t2.Date < t1.Date) AS MaxPrice
FROM
yourTable t1

关于mysql - 测量所有先前日期行的最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10009131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com