jira 搜索从最旧到最新。
jira search ascending oldest to newest.
这是我目前搜索的里拉问题"project in ("项目 a","project b") AND status not in (Resolved, Closed) ORDER BY createdDate"。
我需要更改或添加什么才能使它上升,这会显示从最旧票到最新票的问题。
您只需将 "ASC" 添加到 ORDER BY 子句中,如下所示:
project in ("project a", "project b") AND status not in (Resolved, Closed) ORDER BY createdDate ASC
这是我目前搜索的里拉问题"project in ("项目 a","project b") AND status not in (Resolved, Closed) ORDER BY createdDate"。
我需要更改或添加什么才能使它上升,这会显示从最旧票到最新票的问题。
您只需将 "ASC" 添加到 ORDER BY 子句中,如下所示:
project in ("project a", "project b") AND status not in (Resolved, Closed) ORDER BY createdDate ASC