缓慢白云

文章
2
资源
0
加入时间
2年10月17天

mysql 查询表中最后一条记录

查询全部的记录:            select * from test_limit ;查第一条记录:             select * from test_limit limit 1;查前面两条记录:         select * from test_limit limit 0,2;查第二和第三条记录:     select * from test_limit lim...