Re: Add one column to another

Поиск
Список
Период
Сортировка
От Oliveiros d'Azevedo Cristina
Тема Re: Add one column to another
Дата
Msg-id 0D887B9957604C82AE742AC437E8AF0A@marktestcr.marktest.pt
обсуждение исходный текст
Ответ на Add one column to another  (gvim <gvimrc@gmail.com>)
Ответы Re: Add one column to another  (Scott Marlowe <scott.marlowe@gmail.com>)
Список pgsql-sql
Something like this...?

SELECT first_name,surname, email1 || ';' || email2
FROM t_your_table;


Best,
Oliver

----- Original Message ----- 
From: "gvim" <gvimrc@gmail.com>
To: "pgsql sql" <pgsql-sql@postgresql.org>
Sent: Thursday, August 25, 2011 3:21 PM
Subject: [SQL] Add one column to another


>I have to deal with a table which contains:
>
> first_name
> surname
> email1
> email2
>
> ... and I would like to create a view which combines both email columns 
> thus:
>
> first_name
> surname
> email
>
> It looks simple but I can't think of an obvious query.
>
> gvim
>
> -- 
> Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-sql 



В списке pgsql-sql по дате отправления:

Предыдущее
От: Tony Capobianco
Дата:
Сообщение: Re: Add one column to another
Следующее
От: "David Johnston"
Дата:
Сообщение: Re: Add one column to another