MyBB Community Forums

Full Version: MySQL command for changing usergroups?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to change everyone in Usergroup 5 to Usergroup 2 - how can I do this with one simple MySQL command?
UPDATE mybb_users SET usergroup = '2' WHERE usergroup = '5';
Thank you kindly