一、日期函数
参考:
1)select count(*) from user_info t where t.created_time > DATE_SUB(now(),INTERVAL 100 DAY); -- 查出100天之前创建的记录数
2)select unix_timestamp(); -- 查出当前距格林威治时间秒数
二、
select uuid();
select floor(rand() * 1000); -- 1000 以内随机整数
本文共 280 字,大约阅读时间需要 1 分钟。
一、日期函数
参考:
1)select count(*) from user_info t where t.created_time > DATE_SUB(now(),INTERVAL 100 DAY); -- 查出100天之前创建的记录数
2)select unix_timestamp(); -- 查出当前距格林威治时间秒数
二、
select uuid();
select floor(rand() * 1000); -- 1000 以内随机整数
转载于:https://www.cnblogs.com/zhiqsyr/p/6050185.html