MyBB Community Forums

Full Version: SQL Query to clear profile field
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,
Does anyone know an SQL Query that'll allow me to empty a profile field that's not being used/offered to the users right now?
I prefer to not delete it so it retains the profile field ID.
We just need it emptied so it doesn't show the information in the profiles anymore because Admins can still see it.

Thanks
UPDATE mybb_userfields SET fidxx='';

change xx to your Profile Field ID
Thanks!