暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

oracle按时间要求查询

吼吼哈嘿 2025-02-11
35

一 按时间查询
格式:

1,当时间条件字段为字符串类型的时候,通过以下方法查询数据:

1.1、SELECT * FROM 表名 t WHERE 条件1 AND to_date(t.表名,'yyyy/MM/dd')
between to_date('2020/3/1','yyyy/MM/dd') and to_date('2020/3/31','yyyy/MM/dd');

1.2、sql> SELECT * FROM 表名 t WHERE 1=1 AND to_date(列名,'yyyy/MM/dd hh24:mi:ss')
between to_date('2020/3/1','yyyy/MM/dd hh24:mi:ss') and to_date('2020/3/31','yyyy/MM/dd hh24:mi:ss');

2、当时间条件为date类型的时候,通过以下方法查询数据:
sql> select * from 表名 where to_char(列名,'YYYY-MM-DD')>='2020-10-01'
and to_char(列名,'YYYY-MM-DD')<='2020-11-02' ;

二 在结构化数据库(oracle)中模糊查询有两种
1,普通字符串的字段模糊匹配

select * from 表名 where 字段名 like '...%';

2.时间的字段模糊匹配

Oracle 模糊查询时间

sql> select * from 表名 where to_char(列名,'yyyy-mm-dd HH')='2020-03-25 22';

或者sql> select * from 表名 where to_char (列名,'yyyy')like '2020'

3.按照时间区间查询

select * from 表名 bnm where bnm.date >= to_date('2020-03-25','yyyy-mm-dd') and bnm.date <= to_date('2020-03-31','yyyy-mm-dd')

4. 按照具体到秒数

select * from 表名 bnm where bnm.date >= to_date('2020-03-25 10:01:01','yyyy-mm-dd hh:mi:ss')

24小时

to_date('2020-03-25 23:00:00','yyyy-MM-dd hh24:mi:ss')



select * from 表名 t where to_char(时间字段,'yyyy-mm-dd hh24:mi:ss') like '2020-12-26 17' ;



===================================================================

eg: SQL>

select inst_id as 工单ID,contact_name as 市民姓名,customer_caller as 来电号码, request_topic as 电话主题, agent_name as 受理人姓名, deal_monitor as 监察状态, order_type as 工单类型, register_date as 受理时间, dealer_date as 处理截至日期,order_status as 处理状态,
order_remark as 工单备注,last_task_name as 工单当前所处步骤, deal_deptname as 处理部门, dealer as 当前处理部门, request_from as 诉求渠道, subject_addr as 涉事地址, REQUEST_AREA1 as 事发地址, request_deptname as 问题归属部门, REQUEST_CONTENT as 诉求内容
from v_gz_order t where to_char( t.register_date,'YYYY-MM-DD')>='2019-01-01'
and to_char(t.register_date,'YYYY-MM-DD')<='2019-01-31' order by t.register_date asc ;



English太次郎
关注

————————————————

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

原文链接:https://blog.csdn.net/weixin_41619143/article/details/105106959

文章转载自吼吼哈嘿,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论