What is equivalent of Long data type in PostgreSQL?

前端 未结 2 1700
萌比男神i
萌比男神i 2021-02-03 16:58

I want to know what\'s the equivalent of Long data type in PostgreSQL?

2条回答
  •  梦谈多话
    2021-02-03 17:16

    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

提交回复
热议问题