有没有办法像oracle中的rownum一样获取Mysql中的行号 [英] Is there a way to get the row number in Mysql like the rownum in oracle

查看:26
本文介绍了有没有办法像oracle中的rownum一样获取Mysql中的行号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法像oracle中的rownum一样获取Mysql中的行号,如果没有,那么有没有间接的方法呢?请提出建议.

Is there a way to get the row number in Mysql like the rownum in oracle, If not then is there any indirect way of doing it? please suggest.

推荐答案

直到 MySQL 最终支持现代 SQL,唯一的办法得到类似的东西是这样的:

Until MySQL finally supports modern SQL, the only way to get something similar is this:

SELECT @rownum:=@rownum + 1 as row_number, 
       t.*
FROM ( 
   < your original query goes here >
) t,
(SELECT @rownum := 0) r

这篇关于有没有办法像oracle中的rownum一样获取Mysql中的行号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆