Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找不到我的问题的答案,这可能很容易,但是......无论如何!
我有一个数据库,其中包含一个表格中一个特定球队的每场 NHL 比赛。每场比赛都以良好的顺序进入。
在我的主页上,我想显示下一场比赛以及上一场比赛的结果。如何创建一个 mySQL 查询以根据今天的日期显示上一个游戏?
谢谢!
您的游戏记录是否有时间戳或日期时间值?
如果是这样,您可以编写一个查询,以比 now() 更小的日期对您的游戏进行排序,并限制为一个。
查询应如下所示:
select * from games where gamedate < now() order by gamedate desc limit 1