Re: Can psql show the column type of a result ?

From: Richard Broersma <richard(dot)broersma(at)gmail(dot)com>
To: Nils O(dot) Selåsdal <noselasd(at)asgaard(dot)homelinux(dot)org>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Can psql show the column type of a result ?
Date: 2010-09-22 21:26:41
Message-ID: AANLkTin48MxQM+VpRHPrsRHNL1LYjCdWvGR0sCL4nk-+@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, Sep 22, 2010 at 12:52 PM, "Nils O. Selåsdal"
<noselasd(at)asgaard(dot)homelinux(dot)org> wrote:
>  Hello,
> I'm wondering if there's a way to show the column type of a result with
> psql, e.g.
>
>> select sum(r) from mytable;
>   r
> -------
>  101.0
>
> I'd like to see the type of the 'r' column.
>
>
> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

From psql you can use:

\d mytable

sql to show this might look like:

SELECT a.attname,
pg_catalog.format_type(a.atttypid, a.atttypmod),
(SELECT substring(pg_catalog.pg_get_expr(d.adbin, d.adrelid) for 128)
FROM pg_catalog.pg_attrdef d
WHERE d.adrelid = a.attrelid AND d.adnum = a.attnum AND a.atthasdef),
a.attnotnull, a.attnum
FROM pg_catalog.pg_attribute AS a
INNER JOIN pg_catalog.pg_class c
ON C.oid = a.attrelid
WHERE c.relname ~ '^(mytable)$' AND a.attnum > 0 AND NOT a.attisdropped
ORDER BY a.attnum;

--
Regards,
Richard Broersma Jr.

Visit the Los Angeles PostgreSQL Users Group (LAPUG)
http://pugs.postgresql.org/lapug

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Nils O. Selåsdal 2010-09-22 21:32:09 Re: Can psql show the column type of a result ?
Previous Message Alban Hertroys 2010-09-22 21:26:13 Re: Compiling openssl