Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have two tables (Items and Countries) with one single column on each table:
ItemID |
---|
Item_1 |
Item_2 |
Item_3 |
Countries
CountryID |
---|
Germany |
UK |
USA |
I need to merge both tables in one resultant table that has all the possible combinations of both tables:
ItemID | CountryID |
---|---|
Item_1 | Germany |
Item_2 | Germany |
Item_3 | Germany |
Item_1 | UK |
Item_2 | UK |
Item_3 | UK |
Item_1 | USA |
Item_2 | USA |
Item_3 | USA |
How can this be achieved? Thanks in advance.
concat the next table to the first one with outer join
concat the next table to the first one with outer join
Many thanks!