• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Removing Dupe SQL Entries/Rows..

Gut

Collapser Zulu Creator
Joined
Jun 14, 2007
Messages
581
Reaction score
28
Location
USA
Is there anyway to remove duplicate SQL rows (For player_skills). Everyone's skills on my server have been trippled (They show up 3x each on highscores).

Any ideas?
 
SELECT player_id,skillid,value,count
FROM player_skills
Group By player_id,skillid,value,count
Having Count(*) >= 1

then export that selection and import into an empty player_skills table
 
Last edited:
Back
Top