I create a new character on my server and now i am trying to delete him from the web of my server and i click on the button and he dont desapear... I go to the SQL query to try to delete him manually.
I put this query:
And the code is OK but sql says # MySQL returned an empty result set (i.e. zero rows). And the rows doesnt be deleted. Later i try to create a new one called "prueba" and i try delete it by the name.
The code it's ok but says 0 rows deleted. ( Query took 0.0011 sec ).
WHY? Help me please.
I put this query:
LUA:
DELETE FROM `players` WHERE 'id' = 11;
DELETE FROM `players` WHERE 'id' = 12;
And the code is OK but sql says # MySQL returned an empty result set (i.e. zero rows). And the rows doesnt be deleted. Later i try to create a new one called "prueba" and i try delete it by the name.
LUA:
DELETE FROM `players` WHERE 'name' = "prueba"
The code it's ok but says 0 rows deleted. ( Query took 0.0011 sec ).
WHY? Help me please.