【发布时间】:2014-08-20 11:46:33
【问题描述】:
我目前在尝试合并两个表时遇到了一些困难。
例子:
表_1:
Sylvester
Kim
Charlotte
Jessica
Theodor
表_2:
01-01-2014
02-01-2014
03-01-2014
etc..
table_1 中的每个名称都需要与 table_2 中的每个日期合并。
结果:
Table_3(姓名、日期):
Sylvester, 01-01-2014
Sylvester, 02-01-2014
Sylvester, 03-01-2014
Charlotte, 01-01-2014
Charlotte, 02-01-2014
Charlotte, 03-01-2014
and etc...
我已尝试创建合并语句,但无法使其正常工作。 有没有人知道如何解决这个问题?
谢谢。
【问题讨论】: