常用SQL:修订间差异
跳到导航
跳到搜索
(创建页面,内容为“== MySQL == ==== 生成连续数字 ==== with recursive seq(no) as( select 1 no union all select no+1 no from seq where no < 100 ) select no from seq ;”) |
无编辑摘要 |
||
第11行: | 第11行: | ||
from seq | from seq | ||
; | ; | ||
==== 生成固定长度数字 ==== | |||
select substr(concat('00000', cast(RAND() * 1000000 as int)), -6, 6) |
2023年11月28日 (二) 16:56的版本
MySQL
生成连续数字
with recursive seq(no) as( select 1 no union all select no+1 no from seq where no < 100 ) select no from seq ;
生成固定长度数字
select substr(concat('00000', cast(RAND() * 1000000 as int)), -6, 6)