JIRA 4.2 用户指南 - 不等于: !=

“!=” 运算符用于查找不等于指定字段值之外的问题。 (注意: 不能用于 文本 字段; 文本字段的否定条件请使用 不包含 ("!~") 运算符。)

注意输入 field != value 与输入 NOT field = value}}, {{field != EMPTY 与 {{field IS_NOT EMPTY}}也具有同等效果。

示例
查找所有已经被分配经办人,但是经办人不是jsmith的问题:not assignee = jsmithor:assignee != jsmith查找报告人不是jsmith的所有问题:reporter !=jsmith查找你报告的,但经办人没有被分配给你的问题:reporter = currentUser() and assignee != currentUser()查找已经被分配经办人,但报告人或经办人不是John Smith的问题:assignee != "John Smith" or reporter != "John Smith"查找所有还没有分配经办人的问题:assignee is not emptyassignee != null