Can date and time inequalities be used ? for example, find all the picture files with dates between:
2024-10-24T02=<dm:>=2024-03-05T02 OR
Jan 1, 2024 ..March 5, 2024 AND March 5, 2024..Dec 31, 2024 ???
date/time inequality like math operations
-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: date/time inequality like math operations
dm:>=2024-03-05T02 dm:<=2024-10-24T02-or-
dm:2024-03-05T02..2024-10-24T02-
anmac1789
- Posts: 747
- Joined: Mon Aug 24, 2020 1:16 pm
Re: date/time inequality like math operations
I thought that
dm:>=2024-03-05T02-
void
- Developer
- Posts: 19903
- Joined: Fri Oct 16, 2009 11:31 pm
Re: date/time inequality like math operations
2024-03-05T02 is converted to 2024-03-05T01
use:
dm:>2024-03-05T01:59
-or-
dm:>=2024-03-05T03:00
use:
dm:>2024-03-05T01:59
-or-
dm:>=2024-03-05T03:00
-
anmac1789
- Posts: 747
- Joined: Mon Aug 24, 2020 1:16 pm
Re: date/time inequality like math operations
ooohhh ok thanks!