数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

oracle日期时间模糊查询的方法


发布日期:2023年01月13日
 
oracle日期时间模糊查询的方法

思路是先将oracle中时间字段转化成字段串然后与字符串模糊查询

如下

String strSQLSearch = SELECT * FROM + objConfigDBgetTableName() + WHERE(to_char(creationdatetimeyyyyMMdd hh:mi:ss) LIKE % +strSearch + %);

select * from atm_operatelog t where to_char(toperatetimeyyyyMMdd) like

同时反过来也是一样可行的

select * from atm_operatelog t where toperatetime like to_date(yyyyMMdd)

将字段串转化为时间然后使用like关键字

上一篇:解决oracle10g安装后的中文显示乱码

下一篇:oraclesqlloader全攻略