gpt4 book ai didi

mysql - 如何从MySQL服务器数据库中获取特定条件的最新记录?

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

我有一个数据库表,其中的字段如下面的简化示例中所述。

获取特定类型值的最新记录(例如类型值 = 4,请参阅示例)的 SQL 查询是什么样的?

id - type -   details   - created
1 4 'detailsA' 2010-09-07
2 4 'detailsB' 2010-09-10 //this is the record to be retrieved
3 3 'detailsC' 2010-09-14

我看到的唯一方法是通过 2 个查询;第一个查询通过 MAX(date) 检索相关日期 (2010-09-10),并在第二个查询中使用该值...

最佳答案

select id, type, details, created
from MyTable
where type = 4
order by created desc
limit 1

关于mysql - 如何从MySQL服务器数据库中获取特定条件的最新记录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21291794/

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