Jump to content
  • 0

Duplicate Entryes


0flee

Question

Hello all. I do a small mistake. And this mistake it is on custom_spawnlist. I duplicated all spawns. Npcs/monsters. How i can delete duplicated spawns? It is a command on sql or query?
Greetings

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Try this one:

 

CREATE TABLE `spawnlist_tmp` SELECT DISTINCT * FROM `spawnlist`;
DROP TABLE `spawnlist`;
RENAME TABLE `spawnlist_tmp` TO `spawnlist`;

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...