可以这样 *** 作看看:
1、确认表名及列名,假设表明为S,列名为ID
2、查询最大ID:selectMAX(ID)fromS;
3、查询最大ID的记录:elect*fromSwhereID=(selectMAX(ID)fromS);
4、这样就可以查出最大的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)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)