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查询结果一致
标签:post rac 格式 body gpo bsp select date to_date
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查询结果一致
标签:post rac 格式 body gpo bsp select date to_date
原文地址:https://www.cnblogs.com/zjwwljty/p/8531114.html