gpt4 book ai didi

php - 从 PhpMyAdmin 获取最大年份的记录

转载 作者:行者123 更新时间:2023-11-28 23:47:32 25 4
gpt4 key购买 nike

我有下表

+--------------+-----------+
| serial no | isNew |
+--------------+-----------+
| 630401A | 2014 |
| 630401B | 2014 |
| 630401A | 2013 |
| 630401B | 2013 |
| 630401C | 2013 |
+--------------+-----------+

现在我想根据 isNew 列选择记录。正如您所看到的,序列号在两种情况下是相同的,而 isNew 是不同的,在一种情况下,只有序列号的记录。

所以我想要这样的输出

+--------------+-----------+
| serial no | isNew |
+--------------+-----------+
| 630401A | 2014 |
| 630401B | 2014 |
| 630401C | 2013 |
+--------------+-----------+

我希望我很清楚地显示我想要的表格和结果。

提前感谢您的帮助!

最佳答案

select * from TABLENAME group by serialno order by isNew DESC

关于php - 从 PhpMyAdmin 获取最大年份的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33339162/

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