Add a field to the admin table, called something like "protect".
Set the field to "yes" or whatever (could be a bool) for the user that is may not be deleted, and "no" for the others.
Then, change the WHERE clause in your delete statement include something like:
"WHERE blabla=blabla AND protect=no"
Now the field with the "yes" in it will never match, and will not be deleted.