怎么在检索出来的结果集中添加一列显示列,表示自增的ID

如何在检索出来的结果集中添加一列显示列,表示自增的IDselect a.fname,a.fbarcode from product a where a

如何在检索出来的结果集中添加一列显示列,表示自增的ID
select a.fname,a.fbarcode from product a where a.fstate<100

[解决办法]
http://blog.csdn.net/acmain_chm/article/details/4095531

MySQL中的ROWNUM的实现
MySQL 几乎模拟了 Oracle,SQL Server等商业数据库的大部分功能,函数。但很可惜,到目前的版本(5.1.33)为止,仍没有实现ROWNUM这个功能。 下面介绍几种具体的实现方法.建立实验环境如下mysql> create table tbl ( -> id int primary key, -> col int -> );Que...