Mark F Posted July 22, 2008 Posted July 22, 2008 Does anyone know how I can change every users brave to 15 without having to modify every user manually? Quote
Floydian Posted July 22, 2008 Posted July 22, 2008 Re: Changing Brave Field update users set maxbrave = 15 the column name maxbrave might be wrong. it could be max_brave. but that query is the general gist of it. to update one person: update users set maxbrave = 15 WHERE userid = 1234 ;) Quote
Mark F Posted July 23, 2008 Author Posted July 23, 2008 Re: Changing Brave Field Thank you so much, it worked perfectly! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.