Is it possible to display query results as shown below in mysql shell?
mysql> select code, created_at from my_records; code created_at 1213307927 2013-04-26 09:52:10 8400000000 2013-04-29 23:38:48 8311000001 2013-04-29 23:38:48 3 rows in set (0.00 sec)
instead
mysql> select code, created_at from my_records; +------------+---------------------+ | code | created_at | +------------+---------------------+ | 1213307927 | 2013-04-26 09:52:10 | | 8400000000 | 2013-04-29 23:38:48 | | 8311000001 | 2013-04-29 23:38:48 | +------------+---------------------+ 3 rows in set (0.00 sec)
The reason I ask, because I have a tedious task, I need to copy the output and paste it onto another tool.
sql mysql
chawarong
source share