Re: why do i get 2 as answer for select length('aa '::char(6)); - Mailing list pgsql-novice

From Tom Lane
Subject Re: why do i get 2 as answer for select length('aa '::char(6));
Date
Msg-id 14571.1516159925@sss.pgh.pa.us
Whole thread Raw
In response to Re: why do i get 2 as answer for select length('aa '::char(6));  (john snow <ofbizfanster@gmail.com>)
Responses Re: why do i get 2 as answer for select length('aa '::char(6));
List pgsql-novice
john snow <ofbizfanster@gmail.com> writes:
> when you say char-type values, do you include varchar?

No.  varchar and text consider trailing spaces to be significant.

To my mind, there are very few situations where char(n) is actually
a reasonable choice of datatype.  Maybe for US state abbreviations
or the like.  If you're even asking this question, it suggests that
you ought to be using varchar/text.

char(n) basically exists to support fixed-field-width data designs that
should have died along with the punched cards that inspired them.

            regards, tom lane


pgsql-novice by date:

Previous
From: john snow
Date:
Subject: Re: why do i get 2 as answer for select length('aa '::char(6));
Next
From: john snow
Date:
Subject: Re: why do i get 2 as answer for select length('aa '::char(6));