以下是我在SQL中寻找的内容:
select * from issues i1
where exists (
select ''
from issues i2
where
i1.projectid = i2.projectid
and
i2.userid = :currentUser
)
任何人都知道如何为Jira查询语言编写它?
感谢。
答案 0 :(得分:1)
如果你有参与者字段为cf [10150],你可以做这样的事情
cf [10150] = currentUser()或者在votedIssues()中出现问题或者在watchedIssues()中出现问题
对于您的SQL,您可以使用类似的标准JQL函数找到您是受让人或记者等的问题。