Re: Add one column to another

Поиск
Список
Период
Сортировка
От David Johnston
Тема Re: Add one column to another
Дата
Msg-id 021201cc6336$c3547e20$49fd7a60$@yahoo.com
обсуждение исходный текст
Ответ на Add one column to another  (gvim <gvimrc@gmail.com>)
Список pgsql-sql
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.

-----------------------------------------------------------

SELECT first_name, surname, ARRAY[email1, email2] AS email
FROM [...]

David J.



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

Предыдущее
От: "Oliveiros d'Azevedo Cristina"
Дата:
Сообщение: Re: Add one column to another
Следующее
От: Tim Landscheidt
Дата:
Сообщение: Re: Add one column to another