常用SQL:修订间差异

来自牛奶河Wiki
跳到导航 跳到搜索
无编辑摘要
第12行: 第12行:
  ;
  ;
==== 固定长度数字 ====
==== 固定长度数字 ====
  select substr(concat('00000', cast(rand() * 1000000 as int)), -6, 6)
  substr(concat('00000', floor(rand() * 1000000)), -6)
 
==== 近一百天内时间 ====
==== 近一百天内时间 ====
  select subdate(now(), cast(rand() * 100 as int))
  select subdate(now(), cast(rand() * 100 as int))
[[分类:Develop]]
[[分类:Develop]]
[[分类:DB]]
[[分类:DB]]

2023年12月5日 (二) 15:23的版本

MySQL

生成连续数字

with recursive seq(no) as(
    select   1  no
    union all
    select   no+1  no
    from     seq
    where    no < 100
)
select   no
from     seq
;

固定长度数字

substr(concat('00000', floor(rand() * 1000000)), -6)

近一百天内时间

select subdate(now(), cast(rand() * 100 as int))