我对PostgreSQL的auto increment是新的,我们必须使用BigSerial或Serial,所以谁能解释一下在创建表时我们必须使用哪一个呢。哪一个是最好的请解释情景。

最佳答案

From the docs

serial      4 bytes     autoincrementing integer        1 to 2147483647
bigserial   8 bytes     large autoincrementing integer  1 to 9223372036854775807

关于postgresql - BIGSERIAL和SERIAL有什么区别,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57461052/

10-11 03:08