How can I compare a date to a datetime in JQL? Here we're speaking of the "created" field
In MS Transact-SQL, this would be as simple as:
CONVERT(date, created) = '10/7/2018'
But I can't find any date conversion functions at all in Jira (Server) 7.12
Do I really have to do the following?:
NOT (created >= '2018/10/07' AND created < '2018/10/08')
Thanks!
You do have to do something like the latter:
Find issues created on 15 January 2011:
created > "2011/01/15" and created < "2011/01/16"
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.