标签: sql sql-server tsql multiplying
我正在努力解决以下问题:
表1:
表2:
预期结果:
基本上,我想将日期表中的多行与用户表中的行合并。有可能吗? (使用TSQL)。
答案 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