This document demonstrates how to use a sequence to automatically generate unique numeric values for a column in a table. It creates a sequence called SEQ1 that starts at 6 and increments by 1, inserts rows into a product table using SEQ1.NEXTVAL to populate the price column, and shows that the sequence correctly generates the next value for each row from 6 to 8 and then cycles back to 1 as specified by the sequence settings.