日期:2014-05-16  浏览次数:20657 次

MSSQL这句怎么翻译成MYSQL
SELECT * FROM FoodMenu top & where id not in (select id from FoodMenu top &)

注:&为展位符,在一个页面中要多少个菜信息

------解决方案--------------------
select * from table1 order by id limit 100,10;
------解决方案--------------------
select *
from FoodMenu 
order by id desc
limit n,m