Obtaining monthly data of review creation

お困りですか?

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

コミュニティに質問

To obtain the number of reviews created monthly using a SQL query with field "cru_create_date" of the table "cru_review".

Run the following SQL query example(remember to change "xxxxxxx" to own date) against Fisheye/Crucible database:

SELECT cru_default_source FROM cru_review 
WHERE ( 
( cru_create_date < xxxxxxx ) and ( cru_create_date > xxxxxxx )
and
( cru_state != 'Dead' ) 
);

Field "cru_create_date" uses unix time type which means that date format is in milliseconds and you'll need a convertor.

最終更新日 2018 年 7 月 31 日

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

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