您可以LPAD()
与rand()
和一起使用floor()
以生成6位随机数。让我们首先创建一个表-
mysql> create table DemoTable ( Value int );
使用插入命令在表中插入记录-
mysql> insert into DemoTable values(1); mysql> insert into DemoTable values(2); mysql> insert into DemoTable values(3); mysql> insert into DemoTable values(4); mysql> insert into DemoTable values(5); mysql> insert into DemoTable values(6);
使用select语句显示表中的所有记录-
mysql> select * from DemoTable;
这将产生以下输出-
+-------+ | Value | +-------+ | 1 | | 2 | | 3 | | 4 | | 5 | | 6 | +-------+ 6 rows in set (0.00 sec)
以下是在MySQL中生成6位随机数的查询-
mysql> update DemoTable set Value=LPAD(FLOOR(RAND() * 999999.99), 6, '0'); Rows matched: 6 Changed: 6 Warnings: 0
让我们显示表中的更新记录-
mysql> select * from DemoTable;
这将产生以下输出-
+--------+ | Value | +--------+ | 499540 | | 550607 | | 254419 | | 620272 | | 338104 | | 829705 | +--------+ 6 rows in set (0.00 sec)