oracle数据库查询日期类型字段
说明:数据库的字段为日期类型
操作:
第一种方式将字符串日期转换成date类型,用到函数to_date,方式如下:
select d.s_info_windcode from CBONDDESCRIPTION d where d.is_failure = 0 and
and opdate = to_date('2018/12/26 11:06:29','yyyy/mm/dd hh24:mi:ss')
第二种方式将字段转换成字符格式,用到函数to_char,方式如下:
select d.s_info_windcode from CBONDDESCRIPTION d where d.is_failure = 0 and
and to_char(opdate,'yyyymmdd hh24:mm:ss') = '20181226 11:06:29'
如果大家想和我交流或者提出意见,欢迎大家关注我的公众号struggle_skill