站内搜索

读取MYSQL数据库中某个表的第一行和最后一行数据_MySQL

读取第一行

select * frommytable order byIDasc limit 0,1

读取最后一行

select * from mytable order by ID desclimit 0,1

读取前100行

select * from mytable order byIDasc limit 0,100

mytable即是要读取的表名,ID是要排序的对象。
  • 上一篇:MySQL Cluster 7.3.6 Released_MySQL
  • 下一篇:MySQL循环语句_MySQL