//搜索前10條記錄?
?
select * from table limit 10?
?
//倒序排列----以id做排序
?
select * from table order by id desc?
//正序排列----以id號(hào)排序
?
select * from table order by id asc?
?
//搜索前10條記錄并倒序排列?
?
select * from table order by id desc limit 10?
?
//limit 要放在后面
//搜索前10條記錄?
?
select * from table limit 10?
?
//倒序排列----以id做排序
?
select * from table order by id desc?
//正序排列----以id號(hào)排序
?
select * from table order by id asc?
?
//搜索前10條記錄并倒序排列?
?
select * from table order by id desc limit 10?
?
//limit 要放在后面