Mysql|Mysql 取出数据并显示行号 (假设按p_view倒排序)

IFNULL(expr1,expr2)
expr1 不为 NULL,则 IFNULL() 的返回值为 expr1; 否则其返回值为 expr2


selectp_name,p_type,p_view, IFNULL(@rownum:=@rownum+1,@rownum:=1)from products aORDER BY p_view desc


问题又来了,第二次运行 @rownum不是从1开始的




selectp_name,p_type,p_view,@rownum:=@rownum+1
from products a,(select @rownum:=0) bORDER BY p_view desc


【Mysql|Mysql 取出数据并显示行号 (假设按p_view倒排序)】转载于:https://blog.51cto.com/chinaleo/1934852

    推荐阅读