我目前正在設計我的遊戲的數據庫 - 我希望它儘可能的漂亮。下面你會發現一些漂亮的數據庫結構
Database Game {
//The ID of the game (unique)
int id
//First player data
varchar firstPlayerName
int firstPlayerSessionID
varchar firstPlayerIP
//Second player data
varchar secondPlayerName
int secondPlayerSessionID
varchar secondPlayerIP
//The opponent type, 0 is default (against the "computer") while 1 is against another player
int type
//The size of the game, default: 3
int size
}
(對不起格式,它只是用於自己混搭只) 我主要是尋找在「播放器部分」的建議 - 我想這沒關係的方式,現在是這樣,但如果有超過5名球員呢?如果你問我,那就麻煩了。
有沒有更好的方法來做到這一點?