i need to delete all accs in donation rank
can any1 tell me how plz (look at pic )
can any1 tell me how plz (look at pic )
delete from my.cq_donation_dynasort_rec; update cq_user set donation = 0; update cq_user set nobility_rank = 0;
my.cq_donation_dynasort_rec is the same thing as cq_donation_dynasort_rec. The "my." part means inside the "my" database.Quote:
Or if you want to do it for specific person, itsQuote:
Code:delete from my.cq_donation_dynasort_rec; update cq_user set donation = 0; update cq_user set nobility_rank = 0;
update cq_user set donation = 0 where id='ID'; update cq_user set nobility_rank = 0 where id='ID'; Cant test right now.. Dont have a DB..O_O
update cq_user set donation = 0 where name='USERNAME'; update cq_user set nobility_rank = 0 where name='USERNAME';