TSQL 或 SSIS 将列转换为行

发布于 2024-11-07 04:03:56 字数 330 浏览 1 评论 0原文

谁能建议如何实现以下目标?即使用 TSQL 或 SSIS 将列转换为行:

例如 从这个:

col1    col2
start   end

到这个:

start
end

从这个:

col1    col2    col3    col4
start   break   start   end

到这个:

start
break
start
break

谢谢。

Could anyone please suggest how to achieve the following? i.e. convert columns in to rows using either TSQL or SSIS:

e.g.
from this:

col1    col2
start   end

to this:

start
end

from this:

col1    col2    col3    col4
start   break   start   end

to this:

start
break
start
break

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉睡月亮 2024-11-14 04:03:56

感谢@Dalex 的回答。

由于我使用的是 SSIS,所以我最终使用了不需要代码的 Unpivot Transformation Task。

Thanks @Dalex for your answer.

Since I'm using SSIS I ended up using Unpivot Transformation Task which required no code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文