Query Guide: ItemUpdateComments Table

Summary

This is the table containing replies to top-level feed items in the system.

Body

The ItemUpdateComments Table contains replies to top-level feed items in the system.

Query Example

You may use the following example as a starter template.

Please note that the below example does not cover every possible column to select, join, filter, or order by. You may need to modify this query to suit your needs. Refer to the related Getting Started Guide for Database Queries article for how to identify your @BEIDInt or @BEID values (tenant ID).
Select 
    Top 10
    iuc.IUC_ID,
    /* ItemUpdate ID */
    iuc.IUC_ItemUpdateID,
    iuc.IUC_Body,
    iuc.IUC_CreatedByUID,
    iuc.IUC_DateCreated
    /* Add or change selected columns as necessary. */
From
    dbo.ItemUpdateComments iuc With (NOLOCK)
Where
    iuc.IUC_ItemUpdateID = ITEM_UPDATE_ID_HERE
Order By
    iuc.IUC_DateCreated Desc

You would normally get the list of specific ItemUpdates records you want to find comments for from the related Query Guide: ItemUpdates Table article. You then plug the ItemUpdates IDs into this query to identify their comments.

Details

Details

Article ID: 170003
Created
Mon 12/29/25 6:53 PM
Modified
Wed 1/28/26 12:13 PM

Related Articles

Related Articles (2)

This article will serve to assist organizations who wish to start querying their private cloud database for extended reporting scenarios. The following information is useful to keep in mind for all query situations.
This is the table containing each top-level feed item (not feed item replies) in the system.