可以借助以下使用 adddate() 函数的查询来完成,我们生成“2016-12-15”和“2016-12-31”之间的天数 -
mysql> select * from
-> (select adddate('1970-01-01',t4*10000 + t3*1000 + t2*100 + t1*10 + t0) gen_date from
-> (select 0 t0 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t0,
-> (select 0 t1 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t1,
-> (select 0 t2 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t2,
-> (select 0 t3 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t3,
-> (select 0 t4 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t4) v
-> Where gen_date between '2016-12-15' and '2016-12-31'
-> ;
+------------+
| gen_date |
+------------+
| 2016-12-15 |
| 2016-12-16 |
| 2016-12-17 |
| 2016-12-18 |
| 2016-12-19 |
| 2016-12-20 |
| 2016-12-21 |
| 2016-12-22 |
| 2016-12-23 |
| 2016-12-24 |
| 2016-12-25 |
| 2016-12-26 |
| 2016-12-27 |
| 2016-12-28 |
| 2016-12-29 |
| 2016-12-30 |
| 2016-12-31 |
+------------+
17 rows in set (0.30 sec)
复制本文链接文章为作者独立观点不代表优设网立场,未经允许不得转载。
文章推荐更多>
- 1mysql怎么恢复表数据
- 2wordpress怎么上传本地的视频
- 3sqlserver怎么导入mdf文件
- 4uc浏览器到底有啥啊好用吗 uc浏览器真实使用体验分享
- 5wordpress如何安装插件
- 6蓝屏0x000000ed怎么解决 电脑蓝屏0x000000ed的修复方法
- 7oracle如何更改数据库密码
- 8mysql如何设置环境变量
- 9无限制浏览器哪个好 无限制网站浏览器前十推荐
- 10夸克怎么转存115 115资源转存方法分享
- 11wordpress网站如何添加栏目
- 12oracle数据库实例名怎么查看
- 13多台电脑批量定时关机:局域网环境下的组策略管理
- 14wordpress网站怎么设置不可被复制
- 15夸克上怎么找资源 夸克平台资源查找方法
- 16手机UC缓存视频转存教程
- 17电脑键盘哪个是开机键 键盘开机功能键说明
- 18mysql怎么写sql语句
- 19夸克浏览器怎么找网站 快速找到网站的实用方法分享
- 20oracle数据误删怎么恢复
- 21电脑c盘满了怎么清理 电脑小白也能操作的清理指南
- 22笔记本电脑定时开关机设置技巧:适配不同品牌机型的节能方案
- 23mongodb创建的数据库在哪里
- 24mysql属于哪种数据库服务器
- 25双系统笔记本定时关机设置:Windows与Linux的切换管理
- 26oracle数据库怎么查询什么时候修改过
- 27UC缓存视频导出后无法打开
- 28dedecms的md5怎么破
- 29笔记本电脑开不了机 笔记本无法开机故障排查
- 30oracle官方文档怎么看

+------------+
| 2016-12-15 |
| 2016-12-16 |
| 2016-12-17 |
| 2016-12-18 |
| 2016-12-19 |
| 2016-12-20 |
| 2016-12-21 |
| 2016-12-22 |
| 2016-12-23 |
| 2016-12-24 |
| 2016-12-25 |
| 2016-12-26 |
| 2016-12-27 |
| 2016-12-28 |
| 2016-12-29 |
| 2016-12-30 |
| 2016-12-31 |
+------------+
17 rows in set (0.30 sec)