如何解决将查询包含 group by 子句的 SQL Server 中的行值转换为列值
我的表格包含以下记录
Create Table Student_Marks(Student_Id int,Student_Mark int)
Insert into Student_Marks Values(1,50)
Insert into Student_Marks Values(2,60)
Insert into Student_Marks Values(1,40)
Insert into Student_Marks Values(2,70)
Insert into Student_Marks Values(1,60)
Insert into Student_Marks Values(2,90)
所需输出
Student_id Student_Mark
1 50,40,60
2 60,70,90
我需要一个查询,并且该查询应该包含 group by 子句也用于其他目的。所以请建议一个查询。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。