码迷,mamicode.com
首页 > 数据库 > 详细

mysql查询表中最后一条记录

时间:2019-12-23 18:59:36      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:mysql查询   mit   from   sel   查询   test   第一条   order   order by   

 

查询全部的记录:            select * from test_limit ;

查第一条记录:             select * from test_limit limit 1;

查前面两条记录:         select * from test_limit limit 0,2;

查第二和第三条记录:     select * from test_limit limit 1,2;

查最后一条记录:          select * from test_limit order by id DESC limit 1;

mysql查询表中最后一条记录

标签:mysql查询   mit   from   sel   查询   test   第一条   order   order by   

原文地址:https://www.cnblogs.com/ykcbwdt/p/12085022.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!