页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

On this page本页面的内容:

目录
maxLevel2
minLevel1

What is an Advanced Search?

An advanced search allows you to use structured queries to search for JIRA issues. Your search results will be displayed in the Issue Navigator, where you can export them to MS Excel and many other formats. You can also save and subscribe to your advanced searches if you wish.

什么是高级搜索?

通过高级搜索,你可以使用结构化查询语言搜索JIRA的问题。 搜索的结果会显示在 问题导航器中, 然后你可以将搜索结果输出为 MS Excel格式 以及 其他格式。 你还可以 保存 以及 订阅搜索结果。

查询语句由一个 #字段, #操作符, 和 或 _#函数_构成。 例如, 下面的查询语句将返回 "TEST"项目的所有问题A query consists of a #field, followed by an #operator, followed by a value or #function. For example, the following query will find all issues in the "TEST" project:

代码块
project = "TEST"

(This example uses the #Project field, the #EQUALS operator, and the value 这个例子使用了 #项目 字段, #等于 符号, 和 "TEST".)

Note that it is not possible to compare two #fields.

注意不能比较两个 #字段

当你执行高级搜索时, 你使用的是JIRA查询语言(JQL)。 JQL类似SQL表达式, 比如 #>#NULL。 当然, 你不能使用数据库查询语言; 例如, JQL不能使用 SELECT 表达式。 When you perform an advanced search, you are using the JIRA Query Language (JQL). JQL gives you some SQL-like statements, such as #> and #NULL. It is not, however, a database query language; for example, JQL does not have a SELECT statement.

Query
Query

...

如何使用高级搜索

  1. On the top navigation bar, click the "Issues" tab. This will display the Search panel.
  2. Click "advanced". This will display the "Query" box:
  3. Type your query using the #fields, #operators and field values or #functions listed below.
  4. Click the "Search" button to run your query.

...