欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在查询结果中添加一列表示记录的行数的sql语句

程序员文章站 2023-11-13 14:20:52
复制代码 代码如下:declare @table table ([values] varchar(10))  &...

复制代码 代码如下:


declare @table table ([values] varchar(10))    
insert into @table select 'aaa'   
union all select 'ccc'   
union all select 'eee'   
union all select 'ddd'   
union all select 'bbb'   
select [rowid] = identity (int, 1, 1), * into # from @table   
select * from #    
drop table #