gpt4 book ai didi

sql - 我如何找出postgresql中两个参数之间的值?

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

例如:

name | startyear | endyear 
jon 2003 2005
jake 1999 2002
blake 1997 1998
jake 1995 1996
jason 1993 1994

有没有办法返回blake?

我想知道在 jake 的两个任期之间谁是财务主管。

最佳答案

您可以使用 between,例如:

select  yt.name
from YourTable yt
where TheYear between yt.startyear and yt.endyear

between 是包容性的,因此这将返回 TheYear = 97 和 98 的 Blake。

关于sql - 我如何找出postgresql中两个参数之间的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4912509/

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