What is equivalent of Long data type in PostgreSQL? What is equivalent of Long data type in PostgreSQL? java java

What is equivalent of Long data type in PostgreSQL?


According to the docs it looks like bigint is your friend, with a range of -9223372036854775808 to 9223372036854775807.


Should be a bigint

bigint 8 bytes large-range integer -9223372036854775808 to 9223372036854775807

From here: http://www.postgresql.org/docs/current/interactive/datatype-numeric.html