How to view the edit history of a comment in Confluence

プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム

この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。 Server* 製品のサポートは 2024 年 2 月 15 日に終了しました。Server 製品を実行している場合は、 アトラシアン Server サポート終了 のお知らせにアクセスして、移行オプションを確認してください。

*Fisheye および Crucible は除く

要約

Currently, Confluence does not allow you to view previous versions of an edited comment. The aim of this KB is to display the history of an edited comment.

ソリューション

This SQL query will display all versions of a comment, the user that wrote the comment, and when they commented on it. The results will also be sorted in chronological order (from the original version down to the latest, current version).

MySQL

SELECT c.contentid, bc.body AS comment, umlm.username AS commenter, c.lastmoddate AS dateCommented FROM BODYCONTENT bc JOIN CONTENT c ON bc.contentid=c.contentid JOIN user_mapping umc ON c.creator=umc.user_key JOIN user_mapping umlm ON c.lastmodifier=umlm.user_key WHERE c.contentid='<INSERT COMMENT ID>' OR c.prevver='<INSERT COMMENT ID>' ORDER BY c.lastmoddate;

ℹ️ Ensure you enter the comment ID where specified as <INSERT COMMENT ID>.

更新日時: September 25, 2025

さらにヘルプが必要ですか?

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