gpt4 book ai didi

sql - 给定日期的有效价格

转载 作者:行者123 更新时间:2023-12-01 23:25:05 25 4
gpt4 key购买 nike

得到一张包含日期和价格的表格。

Date                  Price2012-01-01            252012-01-05            122012-01-10            10

是否有某种功能可以让我找到“2012-01-07”的当前价格?在我不知道其他日期的情况下。

伪查询:select price where currentprice('2012-01-07')

谢谢!

最佳答案

MySQL:

select price from your_table 
where date <= '2012-01-07'
order by date desc
limit 1

SQL服务器:

select top 1 price from your_table 
where date <= '2012-01-07'
order by date desc

关于sql - 给定日期的有效价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9943394/

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