Re: add some word in select - Mailing list pgsql-odbc

From Stephen Powell
Subject Re: add some word in select
Date
Msg-id ur7yuq3g9.fsf@privacy.net
Whole thread Raw
In response to add some word in select  ("Ricky" <ricky@babonmultimedia.com>)
List pgsql-odbc
On Wed, 17 Dec 2003, ricky@babonmultimedia.com wrote:

> hello, i have sql "select name from user" then row result "John"
> come up. is it posible that the result produce "HELLO John" .
> there's word "Hello" before the name

Use the concatenation operator '||'.

select 'Hello ' || name from user where name = 'John';

You should probably download a copy of the user manual from
<http://www.postgresql.org/docs/> . It describes many of the functions
and operators that are available.

--
Stephen Powell

pgsql-odbc by date:

Previous
From: "Miguel Juan"
Date:
Subject: Re: get last oid
Next
From: Hiroshi Inoue
Date:
Subject: Re: StatementHandle will be free automatically after you excute a