I have a "delete user from database" script that I use on my site. This script just performs about 20 queries to delete the user from each table on my database.
And just now, I was sitting here and it occured to me that I can probably just do a single "DELETE FROM [databasename] WHERE [username]" query instead.
I can't get at my site right now (changing servers) but I am DYING to know if this is possible?