MySQLでランダムデータを作成する
日付
select date(now() - interval 1 day) + interval floor(rand() * 86400) second;
select date(now() - interval 1 day) + interval floor(rand() * 86400) second;
実行時刻の1日前の00:00:00から、その日内の時刻でランダムな日時を決める。
mysql> select date(now() - interval 1 day) + interval floor(rand() * 86400) second;
+----------------------------------------------------------------------+
| date(now() - interval 1 day) + interval floor(rand() * 86400) second |
+----------------------------------------------------------------------+
| 2021-04-17 01:32:41 |
+----------------------------------------------------------------------+
1 row in set (0.01 sec)
文字列
substring(md5(rand()), 1, 19)
substring(md5(rand()), 1, 19)
ランダムで生成したmd5の文字列から、所定の長さを使う。
mysql> select substring(md5(rand()), 1, 19);
+-------------------------------+
| substring(md5(rand()), 1, 19) |
+-------------------------------+
| 08384853ae61dc665e5 |
+-------------------------------+
1 row in set (0.00 sec)
参考
Author And Source
この問題について(MySQLでランダムデータを作成する), 我々は、より多くの情報をここで見つけました https://qiita.com/te2u/items/df0525172fc5c0d6af03著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .