gpt4 book ai didi

mysql - 具有最大 id 的不同值

转载 作者:行者123 更新时间:2023-11-29 13:57:40 25 4
gpt4 key购买 nike

我在 mysql 查询中遇到问题,我有 2 个表。

  1. category_info

    cid cname
    1 Latest News
    2 Notice Board
    3 Headline
  2. news_info

    pid cid title               date
    1 1 mobile 2013-03-04
    2 1 fish 2013-03-04
    3 2 Airtel india 2013-03-04
    4 2 Marco Simoncelli 2013-03-05
    5 3 title1 2013-03-22
    6 1 title 2013-03-22
    7 3 International Opportunity 2013-03-22

我想从表news_info访问标题,该表具有最大pid

我正在使用以下查询

SELECT a.*, b.*  FROM category_info AS a RIGHT JOIN news_info AS b ON (a.cid = b.cid)  GROUP BY a.cid

它给了我独特的值(value),但不是最大ID。它给出最小 id 值。

最佳答案

这将为您提供您提出的问题的答案。我不确定这是否是您真正想要的。

select distinct title
from news_info
where pid =
(select max(pid) from news_info)

关于mysql - 具有最大 id 的不同值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15586766/

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