thinkPHP 如何查询出数据库中id最大的一条数据?
2个回答
展开全部
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)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询