从其他临时表插入 SQL Server 临时表 [关闭]

Posted

技术标签:

【中文标题】从其他临时表插入 SQL Server 临时表 [关闭]【英文标题】:SQL Server Temp Table Insert from other temp table [closed] 【发布时间】:2018-06-05 19:40:20 【问题描述】:

TmpTable1

Col1 = Category1
Col1 = Category2

TmpTable2

30 records for a month

我如何为每个类别显示 30 条记录,因此结果将显示 60 条记录

【问题讨论】:

请阅读this,了解一些改进问题的技巧。 【参考方案1】:

你需要cross join

select t1.*, t2.category
from table1 t1 cross join 
       (select distinct category from table2) t2;

但是如果你没有重复,那么你可以直接表示为:

select *
from table1 t1 cross join 
      table2 t2;

【讨论】:

不确定交叉联接如何每月返回 30 行。 @SeanLange。 . . 30 records for each Category so result will show 60 records 我现在看到了你的解释。很难说他们真正想要什么是如此模糊。

以上是关于从其他临时表插入 SQL Server 临时表 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

SQL SERVER 临时表的排序问题

SQL Server 从表变量插入临时表

将本地数据插入 SQL Server 临时表

SQL 从临时表插入表,并将输出插入临时表

查看或临时表 - 在 MS SQL Server 中使用哪个?

从 SQL 动态结果插入临时表