How to Get Column Names from the Table

Started by venkatalmost 16 years ago8 messagesgeneral
Jump to latest
#1venkat
ven.tammineni@gmail.com

Dear All,

How to get Column Names from Table in PostgreSQL.

Thanks and Regards,

Venkat

#2AI Rumman
rummandba@gmail.com
In reply to: venkat (#1)
Re: How to Get Column Names from the Table

Use:

\d tablename

On Wed, Jul 7, 2010 at 3:08 PM, venkat <ven.tammineni@gmail.com> wrote:

Show quoted text

Dear All,

How to get Column Names from Table in PostgreSQL.

Thanks and Regards,

Venkat

#3Viktor Bojović
viktor.bojovic@gmail.com
In reply to: venkat (#1)
Re: [SQL] How to Get Column Names from the Table

\d tableName

On Wed, Jul 7, 2010 at 11:08 AM, venkat <ven.tammineni@gmail.com> wrote:

Dear All,

How to get Column Names from Table in PostgreSQL.

Thanks and Regards,

Venkat

--
---------------------------------------
Viktor Bojović
---------------------------------------
Wherever I go, Murphy goes with me

#4A. Kretschmer
andreas.kretschmer@schollglas.com
In reply to: venkat (#1)
Re: How to Get Column Names from the Table

In response to venkat :

Dear All,

�� How to get Column Names from Table in PostgreSQL.

select column_name from information_schema.columns where table_name = 'your_table';

Regards, Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG: 0x31720C99, 1006 CCB4 A326 1D42 6431 2EB0 389D 1DC2 3172 0C99

#5venkat
ven.tammineni@gmail.com
In reply to: A. Kretschmer (#4)
Re: How to Get Column Names from the Table

Thanks alot Andreas...It is working fine...

Thanks again.

Venkat

On Wed, Jul 7, 2010 at 2:44 PM, A. Kretschmer <
andreas.kretschmer@schollglas.com> wrote:

Show quoted text

In response to venkat :

Dear All,

How to get Column Names from Table in PostgreSQL.

select column_name from information_schema.columns where table_name =
'your_table';

Regards, Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG: 0x31720C99, 1006 CCB4 A326 1D42 6431 2EB0 389D 1DC2 3172 0C99

--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-sql

#6Jayadevan M
Jayadevan.Maymala@ibsplc.com
In reply to: AI Rumman (#2)
Re: How to Get Column Names from the Table

Use:

\d tablename

And what I really like about it is the way you can make a guess about the
table name and use * .

postgres-# \d mt*
Table "public.mt1"
Column | Type | Modifiers
--------+---------+-----------
id | integer |

Table "public.mt2"
Column | Type | Modifiers
--------+---------+-----------
id | integer |

Table "public.mt3"
Column | Type | Modifiers
--------+---------+-----------
id | integer |

Regards,
Jayadevan

DISCLAIMER:

"The information in this e-mail and any attachment is intended only for
the person to whom it is addressed and may contain confidential and/or
privileged material. If you have received this e-mail in error, kindly
contact the sender and destroy all copies of the original communication.
IBS makes no warranty, express or implied, nor guarantees the accuracy,
adequacy or completeness of the information contained in this email or any
attachment and is not liable for any errors, defects, omissions, viruses
or for resultant loss or damage, if any, direct or indirect."

#7Sreelatha G
sreetlatha@gmail.com
In reply to: Viktor Bojović (#3)
Re: [SQL] How to Get Column Names from the Table

Hi,

To get column names only

select column_name from information_schema.columns where
table_name='captor_prime_aggregates';

Thanks
Sreelatha
On Wed, Jul 7, 2010 at 2:44 PM, Viktor Bojović <viktor.bojovic@gmail.com>wrote:

Show quoted text

\d tableName

On Wed, Jul 7, 2010 at 11:08 AM, venkat <ven.tammineni@gmail.com> wrote:

Dear All,

How to get Column Names from Table in PostgreSQL.

Thanks and Regards,

Venkat

--
---------------------------------------
Viktor Bojović
---------------------------------------
Wherever I go, Murphy goes with me

#8venkat
ven.tammineni@gmail.com
In reply to: Sreelatha G (#7)
Re: [SQL] How to Get Column Names from the Table

Dear Sreelatha.

It is working fine. Thanks alot.

Thanks and Regards,

Venkat

On Wed, Jul 7, 2010 at 3:42 PM, Sreelatha G <sreetlatha@gmail.com> wrote:

Show quoted text

Hi,

To get column names only

select column_name from information_schema.columns where
table_name='captor_prime_aggregates';

Thanks
Sreelatha
On Wed, Jul 7, 2010 at 2:44 PM, Viktor Bojović <viktor.bojovic@gmail.com>wrote:

\d tableName

On Wed, Jul 7, 2010 at 11:08 AM, venkat <ven.tammineni@gmail.com> wrote:

Dear All,

How to get Column Names from Table in PostgreSQL.

Thanks and Regards,

Venkat

--
---------------------------------------
Viktor Bojović
---------------------------------------
Wherever I go, Murphy goes with me