访问作弊:给数据库中点击数字段增加一个随机数
给我的洛阳百姓网http://dysh.org 作弊一下 🙂
update jackcms_content set hits=13+rand()*200 where id is not null; 这样呢会给每个ID不会空的数据统计数增加一个13-200间的随机数,
如果你想完全更新为一个随机的数字就用下面这招:
UPDATE content SET hits= cast(ceiling(rand() * 10000) AS int) WHERE ……