09.07.2018, 18:44
The first query will delete the user completely.. What you need is to UPDATE users and set the column to not banned.
So basically, an example:
The first query depends on your table structure.
So basically, an example:
pawn Код:
UPDATE users SET banned=0 WHERE banned=1;
DELETE FROM banusers;