-3

How can I resequence the value start of a Sequence in PostgreSQL?

Anthon
  • 59,987
  • 25
  • 170
  • 228
Anthony
  • 3
  • 1

1 Answers1

2

You can ALTER the sequence using the following code:

ALTER SEQUENCE RESTART .

You can go through the PostgreSQL sequence manuals at the below link:

http://www.postgresql.org/docs/current/static/sql-altersequence.html

Frank Heikens
  • 106,435
  • 24
  • 133
  • 132
Yousuf Sultan
  • 2,644
  • 7
  • 30
  • 57