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.
我正在随机选择 50 个项目,但是当另一个电话被打时,我想选择另一个不包括之前选择的任何内容的随机 50 个。如何最好地做到这一点?是否有处理此问题的 SQL 语句?
// Collect 50 random entries $stmt = $db->query(' SELECT * FROM db ORDER BY RAND() LIMIT 50 ');
你的问题清楚地表明你没有做足够的研究,因为我刚刚发现了这个
从 SQL Server 表中选择 n 个随机行