SQLServer 将两行数据合并到一行

SQLServer 将两行数据合并到一行,第1张

概述一、问题描述 存储一个环结点的表,输出相邻环结点记录。 环结点表如下:                           预期结果:1->3,3->4,4->1.                       二、解决方案 declare @minVertex intSelect @minVertex= min(Vertex) from CircleVertexselect vertex a

一、问题描述

存储一个环结点的表,输出相邻环结点记录。

环结点表如下:

                         


预期结果:1->3,3->4,4->1.

                

    


二、解决方案

declare @minVertex intSelect @minVertex= min(Vertex) from CircLevertexselect vertex as parentVertex,isnull((select top 1 vertex from circLevertex R	 where R.ID > T.ID	 order by R.ID    ),@minVertex) as childVertexfrom circLevertex T

三、参考

[1].SQL Server combining 2 rows into 1 from the same table

[2].How to combine 2 rows into 1 from the same table


期待您更好的解决方案!

总结

以上是内存溢出为你收集整理的SQLServer 将两行数据合并到一行全部内容,希望文章能够帮你解决SQLServer 将两行数据合并到一行所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1175039.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存