Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: martin.norman@climber.seHello,
Is there a way to do an outer join when there are no matching fields in the tables?
I want to get the cartesian product out of the join.
For example
Table A contains the field year with the values 2014 and 2015.
Table B contains the field quarter with the values Q1, Q2, Q3 and Q4
What I would like is to join the tables and get the following:
Year,Quarter
2014, Q1
2014, Q2
2014, Q3
2014, Q4
2015, Q1
2015, Q2
2015, Q3
2015, Q4
So far I have not found a way to do this.
Is this possbile and how do you do it?
br
Martin