第一种方法:
select (@i:=@i+1) as i,table_name.* from table_name,(select @i:=0) as it
第二种方法:
set @rownum=0;
select @rownum:=@rownum+1 as rownum, t.username from auth_user t limit 1,5;
如果需要一组序列,可以使用建临时表的方式,替代table_name完成
posted on 2017-08-15 10:26 祥昊 阅读(424) 评论(0) 编辑 收藏 举报