Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以从表中获取随机的 ID 数组,但特别包括一个?
所以假设我有 200 行,我可能会将我的脚本限制为输出 20,但其中一行必须包含 id 2(例如)。
不确定这是否可能,将不胜感激收到任何帮助。
select id, if(id = 2, -1, rand()) as sort from my_table order by sort limit 20
不是最终的解决方案,但也许这个线程可以帮助你:
MySQL 从 600K 行中快速选择 10 个随机行
顺便说一句:我会使用缓存(例如 Memcached)数据集来处理脚本(例如 PHP)中的随机数据。但这取决于你的目标。