select * from users order by random();--会进行随机排序,每次运行都会返回不同的结果
select * from users order by random() limit 1;--会进行随机排序,每次运行都会返回一条记录,用来模拟抽奖