Re: Concat two fields into one at runtime - Mailing list pgsql-sql

From Bricklen Anderson
Subject Re: Concat two fields into one at runtime
Date
Msg-id 44884822.8020109@presinet.com
Whole thread Raw
In response to Concat two fields into one at runtime  (George Handin <postgresql@dafunks.com>)
List pgsql-sql
George Handin wrote:
> Is there a way using built-in PostgreSQL functions to combine two data 
> fields into a single field at runtime when querying data?
> 
> For example, the query now returns:
> 
> id    first    last
> ---   -------  ----------
> 1     Goerge   Handin
> 2     Joe      Rachin
> 
> I'd like it to return:
> 
> id    name
> ---   -------------------
> 1     George Handin
> 2     Joe Rachin

select id,first||' '||last from your_table


pgsql-sql by date:

Previous
From: "Aaron Bono"
Date:
Subject: Re: Concat two fields into one at runtime
Next
From: Oisin Glynn
Date:
Subject: Re: Concat two fields into one at runtime