1.日期转换 : to_date
select * from PAY_ORDER where TRADE_TIME < to_date(‘2018-01-14 13:51:06‘, ‘yyyy-mm-dd hh24:mi:ss‘);
2.格式转换 : to_char
select * from PAY_ORDER where to_char(TRADE_TIME,‘yyyy-MM-dd HH24:mi:ss‘) < ‘2018-01-14 13:51:06‘;
上面两句sql查询结果一致
Posted 不像程序员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle 常用函数相关的知识,希望对你有一定的参考价值。
1.日期转换 : to_date
select * from PAY_ORDER where TRADE_TIME < to_date(‘2018-01-14 13:51:06‘, ‘yyyy-mm-dd hh24:mi:ss‘);
2.格式转换 : to_char
select * from PAY_ORDER where to_char(TRADE_TIME,‘yyyy-MM-dd HH24:mi:ss‘) < ‘2018-01-14 13:51:06‘;
上面两句sql查询结果一致
以上是关于Oracle 常用函数的主要内容,如果未能解决你的问题,请参考以下文章