I am creating a Database which should have these datas:
Table Name: PlayerNames
Columns: FirstName, LastName, Rank
Now I have another data which shows the HeadToHead count of winning: For eg.
A-A = Null A-B = 5 (That means A against B and A won) A-C = 3 (A against C, and A won)
B-A = 3 (That means B against A, and B won. I dont know A-B and B-A are not same). B-B = Null B-C = 4
..... and so on. I have to create a DB for this in which I can pull these records and viewers can select a player and select another player and see their opponent stats. How should DB be designed?
Any help?
Thanks!
