mysql与sqlserver倒序与正序查询

//搜索前10条记录 

 

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 要放在后面

你可能感兴趣的:(mysql与sqlserver倒序与正序查询)