How to list issues where issue link is created after a specific date

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

目的

To retrieve all issues from database where issue link (eg: relates to) is created after a specific date. 

ソリューション

  1. Login to JIRA database
  2. 次の SQL を実行します。

    select cg.issueid
    from 
    	changegroup cg, changeitem ci
    where 
    	cg.id = ci.groupid and
    	ci.field = 'Link' and 
    	ci.newstring like '%relates to%' and 
    	cg.created > '2018-07-10 11:00:00.000+08';

    (info) Modify the date time accordingly


最終更新日 2018 年 8 月 2 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.