Re: char columns, space padding, and the "like" operator - Mailing list pgsql-interfaces

From Tom Lane
Subject Re: char columns, space padding, and the "like" operator
Date
Msg-id 8609.1233610735@sss.pgh.pa.us
Whole thread Raw
In response to char columns, space padding, and the "like" operator  ("Haszlakiewicz, Eric" <EHASZLA@transunion.com>)
Responses Re: char columns, space padding, and the "like" operator  ("Haszlakiewicz, Eric" <EHASZLA@transunion.com>)
List pgsql-interfaces
"Haszlakiewicz, Eric" <EHASZLA@transunion.com> writes:
> Once I realized that the value in the table actually got extended to
> 'SOMEVALUE ', things started making sense, since the equivalent quick
> select is actually:
> select 'SOMEVALUE ' like 'SOME% %';

> Unfortunately, my app has a whole bunch of places where it uses
> constructs like this against char columns.  Other databases (such as
> Informix), automatically strip spaces off char column so queries like
> the above behave in a more intuitive fashion.

Cast the char(n) column to text or varchar, and it should work more
like you're expecting.
        regards, tom lane


pgsql-interfaces by date:

Previous
From: "Haszlakiewicz, Eric"
Date:
Subject: char columns, space padding, and the "like" operator
Next
From: "Haszlakiewicz, Eric"
Date:
Subject: Re: char columns, space padding, and the "like" operator