8

在 MySQL 中,我有一些表需要随机化电话号码和电子邮件地址,以便为开发目的随机生成。

在 MySQL 中,如何为电话号码生成 7 位唯一随机数?

如何生成随机电子邮件地址,例如545165498@mailinator.com.

如何使用 MySQL 查询生成这些随机数据?

4

4 回答 4

9

MySQL返回<= <rand()范围内的随机浮点值。 0value1.0

将其乘以另一个数字:UPPER_BOUND并得到它的下限,您将得到一个介于 0 和 (UPPER_BOUND-1) 之间的随机整数,如下所示:

SELECT floor(rand() * 10) as randNum;

这只会给你一个 0 到 10 之间的随机数。

将 10 更改为比您要生成的数字大的数字。

像这样的东西:

UPDATE user 
SET email = CONCAT(FLOOR(rand() * 10000000),'@mailinator.com'), 
    PhoneNo = FLOOR(rand() * 10000000)
于 2013-08-21T19:19:45.843 回答
5

这应该给你一个 7 位长度的随机数

选择楼层(1000000 + 兰德()* 8999999)

像这样的东西应该根据您的要求更新您的电话号码和电子邮件地址

UPDATE Customers 
SET phone = CAST(FLOOR(1000000 + RAND(8999999) AS VARCHAR), 
email = CONCAT(CAST(FLOOR(1000000 + RAND(8999999) AS VARCHAR), '@mailinator.com')
于 2013-08-21T19:08:47.577 回答
5

MySQL 生成随机数据演练:

0(包括)和 1 不包括之间的随机数:

mysql> select rand();
+--------------------+
| rand()             |
+--------------------+
| 0.5485130739850114 |
+--------------------+                                                     
1 row in set (0.00 sec)

介于 0(包括)和 10 之间的随机整数:

mysql> select floor(rand()*10);
+------------------+
| floor(rand()*10) |
+------------------+
|                6 |
+------------------+
1 row in set (0.00 sec)

随机字母或数字:

mysql> select concat(substring('ABCDEF012345', rand()*36+1, 1));
+---------------------------------------------------------------------------+
| concat(substring('ABCDEF012345', rand()*36+1, 1))                         |
+---------------------------------------------------------------------------+
| F                                                                         |
+---------------------------------------------------------------------------+
1 row in set (0.00 sec)

随机字母 a 到 z:

mysql> select char(round(rand()*25)+97);
+---------------------------+
| char(round(rand()*25)+97) |
+---------------------------+
| s                         |
+---------------------------+
1 row in set (0.00 sec)

随机 8 个字符的字母数字字符串:

mysql> SELECT LEFT(UUID(), 8);
+-----------------+
| LEFT(UUID(), 8) |
+-----------------+
| c26117af        |
+-----------------+
1 row in set (0.00 sec)

MySQL中的随机大写字母:

mysql> select CHAR( FLOOR(65 + (RAND() * 25)));
+----------------------------------+
| CHAR( FLOOR(65 + (RAND() * 25))) |
+----------------------------------+
| B                                |
+----------------------------------+
1 row in set (0.00 sec)

将随机行加载到表中:

mysql> create table penguin (id INT primary key auto_increment, msg TEXT);
Query OK, 0 rows affected (0.02 sec)

mysql> insert into penguin values (0, LEFT(UUID(), 8));
Query OK, 1 row affected (0.00 sec)

mysql> select * from penguin;
+------+----------+
| id   | msg      |
+------+----------+
|    0 | abab341b |
+------+----------+
1 row in set (0.00 sec)

加载随机行:

制作一个名为 dennis 的程序,将 1000 个随机行加载到 penguin 中。

mysql> delimiter ;;
mysql> drop procedure if exists dennis;;
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> create procedure dennis()
    -> begin
    -> DECLARE int_val INT DEFAULT 0;
    -> myloop : LOOP
    ->   if (int_val = 1000) THEN
    ->     LEAVE myloop;
    ->   end if;
    ->   insert into penguin values (0, LEFT(UUID(), 8));
    ->   set int_val = int_val +1;
    -> end loop;
    -> end;;
Query OK, 0 rows affected (0.00 sec)  

mysql> call dennis();;

mysql> select * from penguin;;
+------+----------+                      
| id   | msg      |              
+------+----------+                   
|    0 | abab341b |                 
|    1 | c5dc08ee |           
|    2 | c5dca476 |
...
+------+----------+

更新表中的所有行以包含随机数据:

mysql> create table foo (id INT primary key auto_increment, msg TEXT);
Query OK, 0 rows affected (0.02 sec)

mysql> insert into foo values (0,'hi');
Query OK, 1 row affected (0.00 sec)

mysql> insert into foo values (0,'hi2');
Query OK, 1 row affected (0.00 sec)

mysql> insert into foo values (0,'hi3');
Query OK, 1 row affected (0.00 sec)

mysql> select * from foo;
+----+------+
| id | msg  |
+----+------+
|  1 | hi   |
|  2 | hi2  |
|  3 | hi3  |
+----+------+
3 rows in set (0.00 sec)

mysql> update foo set msg = rand();
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3  Changed: 3  Warnings: 0

mysql> select * from foo;
+----+---------------------+
| id | msg                 |
+----+---------------------+
|  1 | 0.42576668451145916 |
|  2 | 0.6385560879842901  |
|  3 | 0.9154804171207178  |
+----+---------------------+
3 rows in set (0.00 sec)
于 2014-01-11T20:47:24.230 回答
2

这是一个在线工具,可以生成具有许多选项的随机数据。 http://www.generateddata.com/

只需输入参数定义你想要什么样的随机数据,并导出为合适的格式,然后你就可以加载它了。

于 2013-08-21T19:13:03.300 回答