I have two tables as follow: Table 1:
Type
ABC
DEF
Table 2:
Date
12/1/2019
1/1/2020
2/1/2020
I'd like to populate a new DataFrame with all the possible combinations like this:
Type Date
ABC 12/1/2019
ABC 1/1/2020
ABC 2/1/2020
DEF 12/1/2019
DEF 1/1/2020
DEF 2/1/2020