思路是先将oracle中时间字段转化成字段串,然后与字符串模糊查询
如下:
select * from atm1_operatelog t where to_char(t.operatetime,'yyyy-MM-dd') like '2006-10-16'
同时反过来也是一样可行的
select * from atm1_operatelog t where t.operatetime like to_date('2006-10-16','yyyy-MM-dd')
将字段串转化为时间然后使用like关键字
posted on 2006-10-17 15:45
陈琪 阅读(4880)
评论(8) 编辑 收藏