如何在终端中最好地显示 MySQL SELECT 返回太多字段?

How to best display in Terminal a MySQL SELECT returning too many fields?(如何在终端中最好地显示 MySQL SELECT 返回太多字段?)
本文介绍了如何在终端中最好地显示 MySQL SELECT 返回太多字段?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 PuTTY 运行:

mysql> SELECT * FROM sometable;

sometable 有许多字段,这导致许多列试图在终端中显示.字段会绕到下一行,因此很难将列标题与字段值对齐.

sometable has many fields and this results in many columns trying to be displayed in the terminal. The fields wrap onto the next line so it is very hard to line up column titles with field values.

终端查看此类数据有哪些解决方案?

我没有也不想访问 phpMyAdmin - 或任何其他 GUI 界面.我正在寻找这样的命令行解决方案:将 MySQL 查询结果保存到文本或 CVS 文件中

I don't have nor want access to phpMyAdmin - or any other GUI interfaces. I'm looking for command-line solutions such as this one: Save MySQL Query results into text or CVS file

推荐答案

G 代替 终止查询;.例如:

SELECT * FROM sometableG

此查询垂直显示行,如下所示:

This query displays the rows vertically, like this:

*************************** 1. row ***************************
                 Host: localhost
                   Db: mydatabase1
                 User: myuser1
          Select_priv: Y
          Insert_priv: Y
          Update_priv: Y
          ...
*************************** 2. row ***************************
                 Host: localhost
                   Db: mydatabase2
                 User: myuser2
          Select_priv: Y
          Insert_priv: Y
          Update_priv: Y
          ...

这篇关于如何在终端中最好地显示 MySQL SELECT 返回太多字段?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)