Sequence represents a counter. Each counter is identified by its primary key (sequence_number_id). Counters are used for unique ids for other objects within the product.
| Column Name | Column Datatype | Column Null Option | Column Comment |
| sequence_num_id | integer | not null | This is a primary key that uniquely identifies this sequence. |
| sequence_num | integer | with null | This is a simple counter that keeps track of the last number in the sequence so far |
Product Name: Portal r12
Table Type: Table