Thread: How to Get Column Names from the Table

How to Get Column Names from the Table

From
venkat
Date:
Dear All,

   How to get Column Names from Table in PostgreSQL.

Thanks and Regards,

Venkat

Re: How to Get Column Names from the Table

From
AI Rumman
Date:
Use:

\d tablename


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

   How to get Column Names from Table in PostgreSQL.

Thanks and Regards,

Venkat

Re: [SQL] How to Get Column Names from the Table

From
Viktor Bojović
Date:
\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

Re: How to Get Column Names from the Table

From
Jayadevan M
Date:
> 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."






Re: [SQL] How to Get Column Names from the Table

From
Sreelatha G
Date:
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

Re: [SQL] How to Get Column Names from the Table

From
venkat
Date:
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:
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