作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图让此 View 查询两个表,然后将每个程序 ID 与 AttributeNames 列中的所有 AttributeName 一起汇总到一行
我加入了这两个表,它提取了适当数量的记录。
现在,这部分我需要的就是将它们汇总起来,其中每个 ProgramID 占一行,并且所有 AttributeNames 一起位于每个 id 的 AttributeNames 列中。
示例:全部在一行中。
ProgramID | AttributeNames
887 | Studydesign, Control Groups, Primary Outcomes.
这是我需要修改的 SQL View 的图像,以便它执行以下操作:
查询:
SELECT TOP (100) PERCENT dbo.tblProgramAttributes.ProgramID,
dbo.tblProgramAttributes.AttributeID AS PAattributeID,
dbo.tblAttributes.AttributeID,
dbo.tblAttributes.AttributeName
FROM dbo.tblProgramAttributes INNER JOIN
dbo.tblAttributes
ON dbo.tblProgramAttributes.AttributeID = dbo.tblAttributes.AttributeID
WHERE (dbo.tblProgramAttributes.AttributeID NOT LIKE '%ProgramType%')
ORDER BY dbo.tblProgramAttributes.ProgramID DESC
最佳答案
select ProgramId,
stuff(
(
select ','+ [attributename]
from Table1
where programid = t.programid for XML path('')
),1,1,'') as AttributeNames
from (select distinct programid
from Table1 )t
查看我的sql fiddle
结果
PROGRAMID ATTRIBUTENAMES
887 Study Design,Control Groups,Primary Outcomes
关于sql - 多行合并为单行并合并列 SQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22919259/
我是 sql 的新手,我从未在 mysql 中使用过变量或条件,但从其他编程语言中知道这一点。几天以来,我试图找到一种对用户分数进行排名的方法。我阅读了很多文章,也阅读了 stackoverflow
我是一名优秀的程序员,十分优秀!