How can I create a leading zero sequence in PostgreSQL?
For MySQL I know it is BIGINT(10) UNSIGNED ZEROFILL AUTO_INCREMENT
but in PostgreSQL I can't find an equivalent (only bigserial
).
Moreover how can I limit the number of zeroes as BIGINT(10)
means 10 symbols, does the type bigserial
have such a limit?
BIGINT(10)
does not limit the values to only 10 digits in MySQL. You can store any number you like in a column defined like that. – Teammate