网站首页 博客 mysql产生随机数
例如产生1-100之间的随机数
floor(1 + (rand() * 101))
产生22000-28000之间的随机数
floor(22000 + (rand() * 6000))