gpt4 book ai didi

sql - 在 SQLite 中选择与条件匹配的最新行

转载 作者:行者123 更新时间:2023-12-03 16:16:05 24 4
gpt4 key购买 nike

假设我有一张 table :

Name, status, timestamp

我想选择匹配 status='active' 的行,但只选择那些具有最新时间戳的行。所以如果有这样的行:
Bob, active, 5/10/2010
Bob, active, 6/12/2010
Ann, inactive, 6/12/2000
Ann, active, 9/3/2009
Ann, active, 9/25/2010

我希望它返回:
Bob, active, 6/12/2010
Ann, active, 9/25/2010

我怎样才能做到这一点?如果重要的话,我正在使用 SQLite。

谢谢你。

最佳答案

select name, status, max(timestamp) 
from my_table
where status = 'active'
group by name, status

看看 http://www.w3schools.com/sql/sql_groupby.asp

关于sql - 在 SQLite 中选择与条件匹配的最新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3809540/

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