說明:數據庫的字段為日期類型
操作:
第一種方式將字符串日期轉換成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'
