Does anyone know the JOIN statement in SQL that is used to relate the item and itemclass tables in RMS? I cannot seem to figure it out.
Thanks,
nick
Does anyone know the JOIN statement in SQL that is used to relate the item and itemclass tables in RMS? I cannot seem to figure it out.
Thanks,
nick
They don't directly relate. Take a look at the ItemClassComponent table, this is where they get related to the Item table.
Item LEFT JOIN ItemClassComponent With(NOLOCK) ON Item.ID ItemClassComponent.ItemID LEFT JOIN ItemClass With(NOLOCK) on ItemClassComponent.ItemClassID ItemClass.ID
Rob
"Nick" wrote:
Have something to add? Share your thoughts — no account required.
Ask the community — no account required