gpt4 book ai didi

php - Codeigniter 中的 Select-max() 值对于两个或多个字符工作错误

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

我有下表,我想从 Pro_id 中选择 max 值,如果我使用 1 位 pro_id 字符就可以工作

+----+--------------------------+------------+
| id | pro_id | parent |
+----+--------------------------+------------+
| 3 | 1 | 19 |
| 4 | 2 | 18 |
| 5 | 3 | 19 |
| 6 | 4 | 34 |
+----+--------------------------+------------+

但是如果我使用两个或更多数字作为 pro_id ,则不起作用,如下表

+----+--------------------------+------------+
| id | pro_id | parent |
+----+--------------------------+------------+
| 3 | 1352 | 19 |
| 4 | 244 | 18 |
| 5 | 32 | 19 |
| 6 | 4455 | 34 |
+----+--------------------------+------------+

我该如何在Codeigniter中使用select_max,因为我想从pro_id列中选择最大值,但它对我不起作用

最佳答案

尝试这个查询:

select * from your_table order by pro_id desc limit 1

关于php - Codeigniter 中的 Select-max() 值对于两个或多个字符工作错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27097681/

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