I need to pull combinations of 2 columns from two different tables from the same database.
ex:table1 has columns
Org_Id Org_Name
1001 company1
1002 company2
table2 has columns
Country_Id Country_Name
1 USA
2 uk
3 australia
4 canada
after creating combinations ,i need to create table 3 which hold the values of combinations...
table3 should have columns
org_name Country_Name
company1 usa
company2 uk
company2 usa
company1 canada
Note: Using joint we can display what ever we have in columns ,, but i need combinations of both the columns.... please help me this.....expecting your response asap....Thanks you all...