读取第一行

         select * frommytable order by IDasc limit 0,1

读取最后一行

           select * from mytable order by ID desclimit 0,1

读取前100行

          select * from mytable order byIDasc limit 0,100

mytable即是要读取的表名,ID是要排序的对象。
Logo

更多推荐