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.
SQL テーブルから 2 つのランダムな行を選択する最速の方法は何ですか? (SQL のみかどうか) PhpMyAdmin で MySQL を使用しています。
次のようになります。
SELECT * FROM table LIMIT 2
得られるのは、データベースのデフォルトの順序で 2 つの行です。
これを試して:
SELECT * FROM table ORDER BY RAND() LIMIT 0, 2