动态存储过程结果到表
我有一个存储过程,可以动态生成数据透视表结果,传递行定义的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将创建一个 #TempTable,其中包含 FROM 子句中的任何结果,无论列的数量/类型如何。
This will create a #TempTable with the results of whatever you have in the FROM clause, regardless of number/type of columns.
你没有问,但这就是我从视图中获取一组列名的方式:
you didn't ask, but this is how I'm getting a set of column names from a view: