JIRA date range search not working as expected

Irwin Schreiman August 4, 2017

When I use JQL below:

project = CLN AND (created >= 2017-08-01 AND created <= 2017-08-04) ORDER BY created DESC

Items with create dates on 2017-08-04 are not included in the search results as I expect they would since I used the <= operator.

 

However if I use more precision:

project = CLN AND created >= 2017-08-01 AND created <= "2017-08-04 23:59" ORDER BY created DESC

 

I do get the results I'm looking for. Any ideas why?

 

1 answer

1 accepted

1 vote
Answer accepted
Alex Christensen
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 4, 2017

I believe the default timestamp if one is not provided is "00:00" - so, the first query is actually searching for issues that fill this criteria:

project = CLN AND (created >= "2017-08-01 00:00" AND created <= "2017-08-04 00:00") ORDER BY created DESC

The "Created" Date saves the timestamp when you create an issue, so the above query is going to show you everything created at or after midnight on Aug 1, and everything before or exactly at midnight on Aug 4.

Another approach would be to use tthis query so you don't have to worry about timestamps:

project = CLN AND (created >= 2017-08-01 AND created < 2017-08-05) ORDER BY created DESC

Irwin Schreiman August 4, 2017

Thanks, that makes sense.

Irwin Schreiman August 4, 2017

ps, your suggestion is what we ended up doing :).  One note, according to the documentation, "Note that if a time-component is not specified, midnight will be assumed."

https://confluence.atlassian.com/jiracoreserver072/advanced-searching-fields-reference-829092671.html#Advancedsearching-fieldsreference-CreatedCreatedDatecreatedDateCreated

Suggest an answer

Log in or Sign up to answer