Jump to content
  • 0

Wiping a specific item


Question

4 answers to this question

Recommended Posts

Posted (edited)

Do it in sql by querying.

 SELECT <column_name> FROM inventory WHERE <cloumn_name> = '<item_id_number>;

this will display all that has eg. item no. 7777 in the inventory

to delete:

 DELETE FROM inventory WHERE <column_name> = <item_ID>;

Edited by RCharles
Posted

run this in your SQL ...

make sure you do backup before use this ...

shutdown the server and run the query ....

DELETE FROM `cart_inventory` WHERE `nameid`=4128
DELETE FROM `inventory` WHERE `nameid`=4128
DELETE FROM `mail` WHERE `nameid`=4128
DELETE FROM `storage` WHERE `nameid`=4128

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...