Quote:
Originally posted by Lovaboye
i want to delete all users with 0-posts, what is the correct query to run in phpmyadmin thx?
|
I dont recommend deleting users like this. Your will be able to delete their records from user table but there can be many other traces of this user in other tables in your database. Examples: His private messages, his subscribed threads, his personal calender events.. etc. By deleting the user with this query you'll leave orphaned records of this user in your database and it would be more than hard to pin point and remove them later. Your best bet is to delete them inside Admin CP or write a script which will also delete other traces of these users from your database..My 2 cents..