action.unfulfilled_hold_min_loop (view)

This is a database view, not a base table. It has no triggers, indexes, or FK constraints of its own. Querying this view may be more efficient than joining the underlying tables directly.

Columns

Column Type Nullable Notes

hold

integer

Yes

min

bigint

Yes

View Definition

 SELECT unfulfilled_hold_loops.hold,
    min(unfulfilled_hold_loops.count) AS min
   FROM action.unfulfilled_hold_loops
  GROUP BY unfulfilled_hold_loops.hold;