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.
クエリのランダム化された結果を取得したい。RAND()使用はかなり遅いと読みました。使用できますorder by uuid_short()か?それは良いでしょうか?
RAND()
order by uuid_short()
uuid_short()はの約2倍遅いのでrand()、いいえ、の代わりに使用しないでください。uuid_short()rand()
uuid_short()
rand()
mysql> select benchmark(100000000, rand()); 1 row in set (3.25 sec) mysql> select benchmark(100000000, uuid_short()); 1 row in set (6.04 sec)