thinkphp数据库操作
发布时间: 2023-12-25 20:38:40
Ⅰ thinkPHP 如何查询出数据库中id最大的一条数据
thinkPHP 查询数据库中id最大的一条数据操作如下:
先给数据库中的这个字段(sort)分组专 再降序排列, 取第1条。属
通过步骤1 获取了 sort值为最大的数据, 然后在 通过 where sort ='步骤1取的值'。
查询最大ID,select max(id) from table。
查询最大ID的记录 select * from table where id = (select max(id) from table)
或者select * from table t where not exists (select 1 from table t1 where t1.id > t.id)