I think you ment who the current mvp is and who the winning guildsiege is correct?
If so then I misunderstood your question.
Here you go
MVP
Code:
"SELECT TOP 1 m_szName FROM tblCombatJoinPlayer
JP LEFT JOIN tblCombatInfo CI ON JP.CombatID = CI.CombatID
LEFT JOIN CHARACTER_TBL C ON JP.PlayerID = C.m_idPlayer WHERE CI.[Status] = '30' ORDER
BY JP.CombatID DESC, Point DESC"
GuildSiegeWinner
Code:
SELECT TOP 1 m_szGuild FROM [tblCombatJoinGuild] JG LEFT JOIN tblCombatInfo CI ON JG.CombatID = CI.CombatID LEFT JOIN GUILD_TBL G ON JG.GuildID = G.m_idGuild WHERE CI.[Status] = '30' ORDER BY JG.CombatID DESC, Point DESC
To show the MVP on your website you need to fetch row m_szName
To show GS Winner you need to fetch row m_szGuild
Hope this is what you where asking.