On Friday, August 28, 2026, Yaroslav Saburov <[email protected]> wrote:

> What should I look for?
> postgres=# SELECT U&"d\0061t\+000061";
> ERROR:  column "data" does not exist
> LINE 1: SELECT U&"d\0061t\+000061";
>

Identifiers are always looked up, string constants (written using the
single quote variant) get displayed as-is.  You wrote the equivalent of:
select “data”;  and your response is as expected since you have no from
clause to supply the table on which a column “data” could exist.

David J.

Reply via email to