Re: Re: csv format for psql
Pavel Stehule <pavel.stehule@gmail.com>
From: Pavel Stehule <pavel.stehule@gmail.com>
To: Fabien COELHO <coelho@cri.ensmp.fr>
Cc: Daniel Verite <daniel@manitou-mail.org>,
David Steele <david@pgmasters.net>, PostgreSQL Hackers <pgsql-hackers@postgresql.org>
Date: 2018-03-24T08:07:47Z
Lists: pgsql-hackers
minor fix > all is working now [pavel@nemesis postgresql]$ psql --csv -F ';' -c "table foo" postgres a;b;c 3;4;Nazdar 3;4;Nazdar [pavel@nemesis postgresql]$ psql -F ';' --csv -c "table foo" postgres a;b;c 3;4;Nazdar 3;4;Nazdar [pavel@nemesis postgresql]$ psql --csv -c "table foo" postgres a,b,c 3,4,Nazdar 3,4,Nazdar [pavel@nemesis postgresql]$ psql -A -c "table foo" postgres a|b|c 3|4|Nazdar 3|4|Nazdar (2 rows) [pavel@nemesis postgresql]$ psql -A -F , -c "table foo" postgres a,b,c 3,4,Nazdar 3,4,Nazdar (2 rows) Regards Pavel > > Regards > > Pavel > > >> >> Regards >> >> Pavel >> >>> >>> -- >>> Fabien. >>> >> >> >
Commits
-
Add CSV table output mode in psql.
- aa2ba50c2c13 12.0 landed
-
Reorganize format options of psql in alphabetical order
- add9182e5908 12.0 landed
-
Complete TODO item:
- 862b20b38228 8.0.0 cited