`psql` expanded mode equivalency for `mysql`
Am frustated by things like:
0:33:1407402356:root@ahost:~# echo 'use wordpress_3_6_1; select * from wp_posts;'
| mysql -u mysqluser -pmysqlpasswdord | wc -l -L
42 40585
SQL query results being mangled ugly.
PostgreSQL s psql
provides the helper feature expanded mode. See it in action:
postgres@ahost:~$ echo '\c openerp7-0 \\ select * from pg_shadow' | psql
You are now connected to database "openerp7-0" as user "postgres".
usename | usesysid | usecreatedb | usesuper | usecatupd | userepl |
passwd | valuntil | useconfig
----------+----------+-------------+----------+-----------+---------+----------
-------------------------+----------+-----------
openerp | 16384 | t | t | t | t |
ahash | |
postgres | 10 | t | t | t | t |
anotherhash | |
(2 rows)
postgres@ahost:~$ echo '\c openerp7-0 \\ \x \\ select * from pg_shadow' |
psql
You are now connected to database "openerp7-0" as user "postgres".
Expanded display is on.
-[ RECORD 1 ]------------------------------------
usename | openerp
usesysid | 16384
usecreatedb | t
usesuper | t
usecatupd | t
userepl | t
passwd | ahash
valuntil |
useconfig |
-[ RECORD 2 ]------------------------------------
usename | postgres
usesysid | 10
usecreatedb | t
usesuper | t
usecatupd | t
userepl | t
passwd | anotherhash
valuntil |
useconfig |
That expanded mode is cute for tables with many columns:
postgres@ahost:~$ echo '\c openerp7-0 \\ \x \\ select * from res_partner' |
psql | wc -l -L
223 44423
postgres@ahost:~$ echo '\c openerp7-0 \\ select * from res_partner' | psql |
wc -l -L
9 94030
Of course that is only when people do not mind mangling up the row count with wc -l
.
How can people accomplish for mysql
a feature similar to the expanded mode featured in psql
?
If I understand correctly what you want to achieve, you can try it with the \G separator (instead of semicolon), like this:
echo 'SELECT * FROM mytable\G' | mysql -u myuser -p mypassword mydb
Example output:
*************************** 1. row ***************************
id: 1
locale: de
name: Afghanistan
*************************** 2. row ***************************
id: 2
locale: de
name: Ägypten