表中的多行包含来自另一个表的值

时间:2019-02-06 07:31:26

标签: sql sql-server tsql multiplying

我正在努力解决以下问题:

表1:

enter image description here

表2:

enter image description here

预期结果:

enter image description here

基本上,我想将日期表中的多行与用户表中的行合并。有可能吗? (使用TSQL)。

2 个答案:

答案 0 :(得分:3)

您需要应用交叉联接

select date,month,userid,userno from table1 cross join table2

答案 1 :(得分:0)

select Date, Month, USER_ID, ID from
t1 cross join t2