#生成指定区间随机时间测试 yyyyMMddHHmmss
select concat('2018-08-0', floor(1+rand()*3),' ', floor(10+rand()*10),':',floor(10+rand()*49),':',floor(10+rand()*49)) from dual;
#设置随机时间
update test_table t set t.create_time = concat('2018-08-0', floor(1+rand()*3),' ', floor(10+rand()*10),':',floor(10+rand()*49),':',floor(10+rand()*49));
update test_table t set t.update_time = t.create_time;
数据库MySQL生成指定区间内的随机时间
最新推荐文章于 2024-07-21 03:27:43 发布