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

SQL语句取列值数组的表达式如何写

2013-03-13 
求助SQL语句取列值数组的表达式怎么写?请教各位在SQL2005中用取列值数组的SQL表达式应该如何编写。以下表达

求助SQL语句取列值数组的表达式怎么写?
请教各位在SQL2005中用取列值数组的SQL表达式应该如何编写。

以下表达式在数据库中是不正确的,请教正确的表达式该如何写。
select
产品类型,array(select 产品编号 from 产品销售表 ) as 产品编号数组
from 产品销售表

麻烦各位帮忙解决,谢谢了。 要不你这样吧,你把原始数据列出一点点出来,然后列出你“期望”的数据。看看有没有别的更好的方式,你那个我有点看不懂。
[解决办法]
select a,stuff((select ','+b from table1 tb2 where tb1.a=tb2.a),1,1,'') b from table1 tb1 group by a
[解决办法]
楼主把问题复杂化了

----------------------------
-- Author  :DBA_Huangzj(发粪涂墙)
-- Date    :2013-01-05 21:22:08
-- Version:
--      Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (Intel X86) 
--Jun 17 2011 00:57:23 
--Copyright (c) Microsoft Corporation
--Enterprise Edition on Windows NT 6.1 <X86> (Build 7601: Service Pack 1)
--
----------------------------
--> 测试数据:[Table1]
if object_id('[Table1]') is not null drop table [Table1]
go 
create table [Table1]([A列] int,[B列] varchar(1))
insert [Table1]
select 1,'a' union all
select 1,'b' union all
select 1,'c'
--------------开始查询--------------------------

select a.[A列],
stuff((select ','+[B列] from [Table1] b 
       where b.[A列]=a.[A列] 
       for xml path('')),1,1,'') 'B列'
from [Table1] a
group by  a.[A列]
----------------结果----------------------------
/* 
(3 行受影响)
A列          B列
----------- ----------------------------------------------------------------------------------------------------------------
1           a,b,c

(1 行受影响)
*/

热点排行