From: | Ken Tanzer <ken(dot)tanzer(at)gmail(dot)com> |
---|---|
To: | Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com> |
Cc: | PG-General Mailing List <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: psql UPDATE field [tab] expands to DEFAULT? |
Date: | 2019-06-18 22:23:40 |
Message-ID: | CAD3a31XEaeB2odBznuwv3xfshSAzUMPc1yEzGbZezRfQf-+hCA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-hackers |
On Mon, Jun 17, 2019 at 4:24 PM Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
wrote:
>
> My cheat for dealing with many/long column names is:
>
> test=# \d up_test
> Table "public.up_test"
> Column | Type | Collation | Nullable | Default
> --------+---------+-----------+----------+---------
> id | integer | | |
> col1 | boolean | | |
> col2 | integer | | |
>
>
>
> test=# \pset format unaligned
> Output format is unaligned.
> test=# \pset fieldsep ','
> Field separator is ",".
>
> select * from up_test limit 0;
> id,col1,col2
>
> Cut and paste above.
>
> test=# \pset fieldsep '|'
> Field separator is "|".
>
> test=# \pset format 'aligned'
> Output format is aligned.
>
>
Just curious, but if you really do that often, wouldn't you be better off
with something like this?
CREATE OR REPLACE FUNCTION field_list( name ) RETURNS text AS $$
SELECT array_to_string(array_agg(column_name::text ORDER BY
ordinal_position),',') FROM information_schema.columns WHERE table_name =
$1;
$$ LANGUAGE sql STABLE;
Cheers,
Ken
--
AGENCY Software
A Free Software data system
By and for non-profits
*http://agency-software.org/ <http://agency-software.org/>*
*https://demo.agency-software.org/client
<https://demo.agency-software.org/client>*
ken(dot)tanzer(at)agency-software(dot)org
(253) 245-3801
Subscribe to the mailing list
<agency-general-request(at)lists(dot)sourceforge(dot)net?body=subscribe> to
learn more about AGENCY or
follow the discussion.
From | Date | Subject | |
---|---|---|---|
Next Message | Adrian Klaver | 2019-06-19 01:03:18 | Re: psql UPDATE field [tab] expands to DEFAULT? |
Previous Message | Tom Lane | 2019-06-18 18:20:11 | Re: delete inside for plpgsql loop on same relation? |
From | Date | Subject | |
---|---|---|---|
Next Message | Melanie Plageman | 2019-06-18 22:24:08 | Re: Avoiding hash join batch explosions with extreme skew and weird stats |
Previous Message | Tom Lane | 2019-06-18 22:16:40 | PL/Python fails on new NetBSD/PPC 8.0 install |