gpt4 book ai didi

mysql - 从mysql获取两个日期之间的价格

转载 作者:行者123 更新时间:2023-11-29 17:49:05 27 4
gpt4 key购买 nike

在 mysql 数据库中我有这样的表:

StartDate       EndDate         Price
01.01.2017 01.06.2017 100
02.06.2017 01.12.2017 150

在几天之间获取价格的最佳解决方案是什么?例如,如果我发送日期25.05.2017作为开始日期05.06.2017作为结束日期,我需要获取这些日期之间的价格总和。

最佳答案

试试这个

select sum(Price) as total_price from table_name 
where StartDate >= 'given_startdate' and EndDate <= 'given_enddate'

关于mysql - 从mysql获取两个日期之间的价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49550935/

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