博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle 查询今日、昨日、本周、本月和本季度的所有记录
阅读量:5340 次
发布时间:2019-06-15

本文共 918 字,大约阅读时间需要 3 分钟。

1.字段类型为date

今日
 select * from 表名 where to_char(字段名,'dd')=to_char(sysdate,'dd')
昨日
select * from  表名 where to_char(字段名,'dd')= to_char(sysdate-1,'dd')
本周
 select * from 表名 where to_char(字段名,'iw')=to_char(sysdate,'iw')
本月
 select * from 表名 where to_char(字段名,'mm')=to_char(sysdate,'mm')
本季度
 select * from 表名 where to_char(字段名,'q')=to_char(sysdate,'q')
 
2.字段类型为varchar2,格式要与格式化的样式匹配

今日

select * from 表名 where to_char(to_date(字段名,'yyyy-mm-dd hh24:mi:ss'),'dd')=to_char(sysdate,'dd')
昨日
select * from 表名 where to_char(to_date(字段名,'yyyy-mm-dd hh24:mi:ss'),'dd')=to_char(sysdate-1,'dd')
本周
select * from 表名 where to_char(to_date(字段名,'yyyy-mm-dd hh24:mi:ss'),'iw')=to_char(sysdate,'iw')
本月
select * from 表名 where to_char(to_date(字段名,'yyyy-mm-dd hh24:mi:ss'),'mm')=to_char(sysdate,'mm')
本季度
select * from 表名 where to_char(to_date(字段名,'yyyy-mm-dd hh24:mi:ss'),'q')=to_char(sysdate,'q')

转载于:https://www.cnblogs.com/xgwtzg/p/6140022.html

你可能感兴趣的文章
Android反编译教程
查看>>
java重写LinkedList
查看>>
zTree节点重叠或者遮挡
查看>>
List<string> 去重复 并且出现次数最多的排前面
查看>>
js日志管理-log4javascript学习小结
查看>>
Android之布局androidmanifest.xml 资源清单 概述
查看>>
How to Find Research Problems
查看>>
Linux用户管理
查看>>
数据库第1,2,3范式学习
查看>>
《Linux内核设计与实现》第四章学习笔记
查看>>
使用iperf测试网络性能
查看>>
struts2入门之准备工作
查看>>
从C语言的弱类型属性说起
查看>>
大牛博客
查看>>
图片的显示隐藏(两张图片,默认的时候显示第一张,点击的时候显示另一张)...
查看>>
Docker 安装MySQL5.7(三)
查看>>
python 模块 来了 (调包侠 修炼手册一)
查看>>
关于CSS的使用方式
查看>>
本地MongoDB服务开启与连接本地以及远程服务器MongoDB服务
查看>>
跨域解决方案之CORS
查看>>