数据库 – PostgreSQL字符变长限制

前端之家收集整理的这篇文章主要介绍了数据库 – PostgreSQL字符变长限制前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Postgresql中使用字符变化的数据类型.
我在Postgresql手册中找不到这个信息.
字符变化数据类型中字符的最大限制是多少?

解决方法

参考 documentation,对varchar(n)类型定义没有明确的限制.但:


In any case,the longest possible
character string that can be stored is
about 1 GB. (The maximum value that
will be allowed for n in the data type
declaration is less than that. It
wouldn’t be very useful to change this
because with multibyte character
encodings the number of characters and
bytes can be quite different anyway.
If you desire to store long strings
with no specific upper limit,use text
or character varying without a length
specifier,rather than making up an
arbitrary length limit.)

另请注意:

Tip: There is no performance difference among these three types,apart from increased storage space when using the blank-padded type,and a few extra cpu cycles to check the length when storing into a length-constrained column. While character(n) has performance advantages in some other database systems,there is no such advantage in Postgresql; in fact character(n) is usually the slowest of the three because of its additional storage costs. In most situations text or character varying should be used instead.

原文链接:https://www.f2er.com/mssql/82596.html

猜你在找的MsSQL相关文章