I have data in country table like this
ID Country
1 US
2 ARG
3 IND
In the above table, ID is the primary key. I need to create another affected country table like this
Country Affected_country
1 ARG
1 IND
2 US
In the above table, Country column and Affected_country column together are primary key. Country column in affected country is the foreign key to ID column in country table.
Is this right way to design the database?