首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Mysql >

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

2012-10-11 
如何在检索出来的结果集中添加一列显示列,表示自增的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...

热点排行