Re: Query related

Поиск
Список
Период
Сортировка
От suresh gupta
Тема Re: Query related
Дата
Msg-id 005401c9a3af$73bc14c0$cd64290a@ind.zensar.com
обсуждение исходный текст
Ответ на Query related  ("suresh gupta" <suresh.g@zensar.com>)
Список pgsql-admin
Thanks Ashish, it is working.

Regards,
G. V. Suresh Gupta
--------------------------------------------------------------------------------
GTS - EMEIA, Zensar Technologies Zensar Knowledge Park, Plot#5, MIDC IT
Tower, Kharadi, Off Nagar Road, Pune - 411014 Landline : +91-20-66453471 |
+91-9890898688 Email : suresh.g@zensar.com | website: www.zensar.com
----- Original Message -----
From: "Ashish Karalkar" <ashishka@synechron.com>
To: "suresh gupta" <suresh.g@zensar.com>
Cc: <pgsql-admin@postgresql.org>
Sent: Friday, March 13, 2009 1:06 PM
Subject: Re: [ADMIN] Query related


> suresh gupta wrote:
>> Hi Team,
>>  I had a table with 2 fields like First name(FN) and last name(LN). When
>> I give a query for the records of the 2 columns, they are displaying in 2
>> different columns. My requirement is to combine both the columns in a
>> single one. As per my knowledge there are some operators which combine 2
>> columns and display together in single columns like |, +, etc. in other
>> databases like Oracle.
>> For example FN = Suresh and LN=Gupta the output of the query should be
>> Suresh Gupta in single column. Is there any similar operator or method on
>> postgresql to get my result. Please advice.
>>  Pgsql version is 8.1 and window version software.
>>
>>
>> Regards,
>> *G. V. Suresh Gupta*
>> ------------------------------------------------------------------------
>> *GTS - EMEIA, Zensar Technologies *
>> Zensar Knowledge Park, Plot#5, MIDC IT Tower,
>> Kharadi, Off Nagar Road, Pune - 411014
>> Landline : +91-20-66453471 | +91-9890898688
>> Email : suresh.g@zensar.com <mailto:suresh.g@zensar.com> | website:
>> www.zensar.com <http://www.zensar.com>
>>
>> DISCLAIMER:
>> This email may contain confidential or privileged information for the
>> intended recipient(s) and the views expressed in the same are not
>> necessarily the views of Zensar Technologies Ltd. If you are not the
>> intended recipient or have received this e-mail by error, its use is
>> strictly prohibited, please delete the e-mail and notify the sender.
>> Zensar Technologies Ltd. does not accept any liability for virus infected
>> mails.
>>
> This will help you.
>
> postgres=# create table name(fn text,ln text);
> CREATE TABLE
> postgres=# insert into name values ('abc','xyz');
> INSERT 0 1
> postgres=# select * from name;
> fn  | ln
> -----+-----
> abc | xyz
> (1 row)
>
> postgres=# select fn||' '||ln as name from name;
>  name
> ---------
> abc xyz
> (1 row)
>
>
>



DISCLAIMER:
This email may contain confidential or privileged information for the intended recipient(s) and the views expressed in
thesame are not necessarily the views of Zensar Technologies Ltd. If you are not the intended recipient or have
receivedthis e-mail by error, its use is strictly prohibited, please delete the e-mail and notify the sender. Zensar
TechnologiesLtd. does not accept any liability for virus infected mails.  

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

Предыдущее
От: Ashish Karalkar
Дата:
Сообщение: Re: Query related
Следующее
От: Julius Tuskenis
Дата:
Сообщение: Re: Query related