Posted By
Jason Verly
02-04-2022 09:22
Found In
Community:
Maximo Open Forum
\
view thread
I'll give an example for SQL Server, but this can easily translate to Oracle or DB2. You were on the right track with trying to find a record inside a date range. The method I use in Maximo would be written as: ... and (schedstart >= dateadd(d,-1,datediff(d,-0,getdate())) and schedstart < getdate()) ...
|