which data type should I choose for a unique key (id of a user for example) in postgresql database’s table?
does bigint is the one?
thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the
serialtype for automatically incrementing unique ids.If you plan to have more than two billion entries, use
bigserial.serialis the PostgresSQL equivalent of MySQL’sAUTO_INCREMENT.PostgresSQL Documentation: Numeric Types