动态存储过程结果到表

发布于 2024-09-24 16:11:03 字数 146 浏览 1 评论 0原文

我有一个存储过程,可以动态生成数据透视表结果,传递行定义的 SQL、列到数据透视表、聚合(字段)到总和以及聚合的表名称。这很好用,但我需要根据这些结果生成一个表格以用于进一步的计算。

在不知道输出列的情况下,如何将结果动态保存到存储过程(临时或非临时)中的表中?

I have a stored procedure that dynamically produces pivot results, passing sql for row defs, column to pivot, aggregate(field) to sum, and table name of aggregate. This works great, but i need to produce a table from these results to use in further calculations.

How can I dynamically save the results to a table within the stored procedure (temp or non temp) without knowing the output columns??

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

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

发布评论

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

评论(2

ぃ双果 2024-10-01 16:11:03
SELECT *
INTO #TempTable
FROM (Pivot Expression)

这将创建一个 #TempTable,其中包含 FROM 子句中的任何结果,无论列的数量/类型如何。

SELECT *
INTO #TempTable
FROM (Pivot Expression)

This will create a #TempTable with the results of whatever you have in the FROM clause, regardless of number/type of columns.

ペ泪落弦音 2024-10-01 16:11:03

你没有问,但这就是我从视图中获取一组列名的方式:

DECLARE @columns VARCHAR(1000)

SELECT @columns = COALESCE(@columns + ',[' + cast(fld as varchar) + ']',
'[' + cast(fld as varchar)+ ']')
FROM view
GROUP BY fld

you didn't ask, but this is how I'm getting a set of column names from a view:

DECLARE @columns VARCHAR(1000)

SELECT @columns = COALESCE(@columns + ',[' + cast(fld as varchar) + ']',
'[' + cast(fld as varchar)+ ']')
FROM view
GROUP BY fld
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文