I have the following query:
select * from player_source
where source is not null
which results in
ID create_dtime
001 2012-10-16 16:13:27
002 2012-12-10 16:13:27
and so on…
I want to filter the query so that it only returns results with a create_dtime greater than or equal to december 3 2012 , and less than or equal to december 9 2012.
I tried using
select * from player_source
where source is not null
and Create_Dtime >= To_Date('2012-Dec-03','yyyy-mon-dd')
and Create_Dtime <= To_Date('2012-Dec-09','yyyy-mon-dd')
using my Oracle roots, but it didn’t seem to work. Any thoughts?
Query: