MySQL 添加行号

SELECT @row:= @row+1 as row_no, t.* 
from (
  -- 需要展示的表
  select * from test
) t, (select @row:=0) r;

MySQL 添加行号_第1张图片

你可能感兴趣的:(#,SQL)