select * from table limit 10
//倒序排列----以id做排序
select * from table order by id desc
//正序排列----以id号排序
select * from table order by id asc
//搜索前10条记录并倒序排列
select * from table order by id desc limit 10
//limit 要放在后面
欢迎分享,转载请注明来源:内存溢出
select * from table limit 10
//倒序排列----以id做排序
select * from table order by id desc
//正序排列----以id号排序
select * from table order by id asc
//搜索前10条记录并倒序排列
select * from table order by id desc limit 10
//limit 要放在后面
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)