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.
重複の可能性: MySQLは600K行からランダムな行を10行高速 で選択しますMySQLでランダムな行を選択します
MYデータベースには4つの列があります。名前ID電子メールの性別は50万行です。
select * from table where sex='m';
sex='M'である50のランダムな行を取得したい。これが最速の方法です
select * from table where sex='m' ORDER BY RAND() LIMIT 50