原始sql遇到诡异情况,查询不到预期的随机月份数据。解决这个问题,mysql 8提供了一个方法:使用with语句。
with mo1 as (select date_format(date_add('2023-11-01', interval floor(rand() * datediff(curdate(), '2023-11-01')) day), '%y-%m') as month) select * from teacher join mo1 on mo1.month = date_format(create_time, '%y-%m')
登录后复制
然而,更好的解决方案是:
- 代码生成查询条件:在代码中生成随机月份,而不是使用sql语句。
- 避免使用函数索引:date_format()会阻止索引使用,导致查询变慢。如果数据量大,建议外部传入日期参数并使用between条件。
select * from teacher where create_time between '2024-01-01 00:00:00' and '2024-01-31 23:59:59'
登录后复制
- 创建索引:为create_time列创建索引。
alter table teacher add index (create_time);
登录后复制