oracle sql 时间比较_oracle todate格式

2022-09-12 14:37:26 浏览数 (1)

大家好,我是架构君,一个会写代码吟诗的架构师。今天说一说oracle sql 时间比较_oracle todate格式,希望能够帮助大家进步!!!

select *

代码语言:txt复制
     from BCS_EXCEPTION_LOG t
代码语言:txt复制
     where 1=1
代码语言:txt复制
     <if test="topic != null and topic !=''">
代码语言:txt复制
         and t.f_topic like concat(concat('%',#{topic}),'%')
代码语言:txt复制
     </if>
代码语言:txt复制
     <if test="receiveStartTime != null and receiveStartTime !=''">
代码语言:txt复制
         and t.f_receivedate &gt;= to_date(#{receiveStartTime},'yyyy-mm-dd hh24:mi:ss')
代码语言:txt复制
     </if>
代码语言:txt复制
     <if test="receiveEndTime != null and receiveEndTime !=''">
代码语言:txt复制
         and t.f_receivedate &lt;= to_date(#{receiveEndTime},'yyyy-mm-dd hh24:mi:ss')
代码语言:txt复制
     </if>
代码语言:txt复制
     order by t.f_receivedate desc

参数格式:2019-05-19 14:02:38(String)

0 人点赞