| 开启全部版块的sql语句是:
- update cdb_forums set allowmediacode =1
复制代码开启指定版块的sql语句是:
- update cdb_forums set allowmediacode =1 where fid in(fid1,fid2)
复制代码取消所有的多媒体代码的sql语句:
- update cdb_forums set allowmediacode =0
复制代码取消指定板块的多媒体代码的sql语句:
- update cdb_forums set allowmediacode =0 where fid in(fid1,fid2)
复制代码
| |