I've read on here all the posts I can, but none of the suggested solutions work. I have a Timestamp field that I'd like to use in a where clause...
My Syntax is..
select (TO_CHAR(Strt_Dt, 'YYYYMMDD HH24 MI SS')) as Test,
Strt_Dt
from
Some_Table
where
Strt_Dt > between timestamp '2021-03-26 17:00:00' and timestamp '2021-03-26 17:10:00'
I get values OUTSIDE of that range, although all for the 26 of March... what am I doing wrong? (field Strt_Dt defined as Timestamp(6) on the DB).
Thank you!