What's the difference between the text data type and the character varying (varchar) Data types?
According to the documentation,
If character varying is used without length specifier, the type accepts strings of any size. The latter is a PostgreSQL extension.
And
In addition, PostgreSQL provides the text type, which stores strings of any length. Although the type text is not in the SQL standard, several other SQL database management systems have it as well.
So what's the difference?