首页 > 代码库 > MySQL 伪列

MySQL 伪列

mysql中添加序号可以使用伪列

SET @rownum:=0;
SELECT @rownum:=@rownum+1 AS rownum FROM t_user;

 

MySQL 伪列