gpt4 book ai didi

mysql - 从应用程序中选择最新的注释/评论

转载 作者:行者123 更新时间:2023-11-29 06:01:07 24 4
gpt4 key购买 nike

<分区>

我这里有 2 个相关表,applicationapplication_note

我想为每个应用程序找到最新的注释(用户和文本/注释)。

application_note 看起来像

+----------------+-------------+------+-----+-------------------+-----------------------------+
| Field | Type | Null | Key | Default | Extra |
+----------------+-------------+------+-----+-------------------+-----------------------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| create_time | timestamp | NO | | CURRENT_TIMESTAMP | |
| update_time | timestamp | NO | | CURRENT_TIMESTAMP | on update CURRENT_TIMESTAMP |
| application_id | int(11) | YES | MUL | NULL | |
| note | text | YES | | NULL | |
| user | varchar(50) | YES | | NULL | |
+----------------+-------------+------+-----+-------------------+-----------------------------+

我一直在尝试一系列不同的查询。我拥有的最接近的东西是

SELECT user, note, application_id, MAX(create_time)
FROM application_note
GROUP BY application_id

这看起来像 max(create_time) 是我所期望的,但其他值已关闭。我已经尝试了一段时间,但一无所获。

编辑:我计划最终将此添加到 View 或将其添加到更大的查询中,如果有任何变化的话。

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