- [sql] view plain copy
- 01.update pre_common_member set groupid=2 where groupid=1;
复制代码,网站运行中有时候需要批量将用户组A的用户变成用户组B的,由于涉及的用户很多,总不能一个一个的操作吧?
本文介绍一下如何利用sql语句批量修改用户组:
假设:
用户组A的groupid=1
用户组B的groupid=2
将用户组A的用户变成用户组B
那么执行sql语句:
- [sql] view plain copy
- 01.update pre_common_member set groupid=2 where groupid=1;
复制代码
此处注意表前缀pre_要改成自己的!