sqlite3中随机获取N条记录的方法

随机获取N条记录的方法:

select * from tablename order by random() limit N;

相关推荐