Use this query to check what is the Sequence Key with Schema and Table,
SELECT pg_get_serial_sequence('"SchemaName"."TableName"', 'KeyColumnName'); // output: "SequenceKey"
Use this query increase increment value one by one,
SELECT nextval('"SchemaName"."SequenceKey"'::regclass); // output 110
When inserting to table next incremented value will be used as the key (111).
Use this query to set specific value as the incremented value
SELECT setval('"SchemaName"."SequenceKey"', 120);
When inserting to table next incremented value will be used as the key (121).