MySQL增加行号rownum

select * from (
select @rownum:=@rownum+1 AS rownum, app_t.* from (
select * 
from app_custom
where 1=1 
) app_t,(SELECT @rownum:=0) r
) as t where t.rownum between 1 and 10

  

posted @ 2019-08-13 22:30  巴黎爱工作  阅读(1227)  评论(0编辑  收藏  举报