to_char与to_date的区别
Posted wulihong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了to_char与to_date的区别相关的知识,希望对你有一定的参考价值。
select * from csend where credttm > to_date(‘2018-06-11‘,‘yyyy-mm-dd‘);
select * from csend where to_char(credttm,‘yyyy-mm-dd‘)>‘2018-06-25‘
结论:to char 是把日期或数字转换为字符串
to date 是把字符串转换为数据库中得日期类型
以上是关于to_char与to_date的区别的主要内容,如果未能解决你的问题,请参考以下文章
Oracle数据库to_date()和to_char()的相关
oracle “日期date”与“字符串”相互转换 TO_DATE ,TO_CHAR