gpt4 book ai didi

连接语句的 MySql 查询限制和排序

转载 作者:行者123 更新时间:2023-11-29 07:04:51 25 4
gpt4 key购买 nike

我有两个表作为作者和文章。我想获取每位作者的最新文章列表。我只想为一位作者写一篇文章。我希望它是最新的。但是,我什至不知道从哪里开始这个 sql 查询。

编辑

我的表结构可以这样简化:

authors:
id
name
status
seo
articles:
author_id
title
text
date
seo

编辑2

我想到了这样的东西,你能在这里看到任何明显的错误吗:

SELECT authors.*, 
(SELECT articles.title FROM articles WHERE author_id = authors.id ORDER BY articles.date DESC LIMIT 1) as title,
(SELECT articles.seo FROM articles WHERE author_id = authors.id ORDER BY articles.date DESC LIMIT 1) as articleseo
FROM authors
WHERE authors.status = 1

最佳答案

不知道您的表结构是什么,但如果这是我的设想,那么请执行以下操作:

SELECT author.name, article.title FROM
author LEFT JOIN article ON author.id = article.author_id
GROUP BY author.id
ORDER BY author.id, article.date DESC

关于连接语句的 MySql 查询限制和排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7967646/

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