如何调整 MySQL 命令行的显示设置?
mysqlmysqli database
要调整 MySQL 命令行的显示设置,请在 MySQL 查询末尾使用 /G,而不是分号 (;)。
语法如下 −
SELECT *FROM yourTableName \G
上述语法调整显示设置。这里我们将以行格式显示使用 CREATE 创建的示例"studenttable"表中的记录 −
mysql> create table StudentTable −> ( −> Id int, −> Name varchar(100) −> ); Query OK, 0 rows affected (0.65 sec)
To get all the records −
mysql> select *from StudentTable;
以下显示记录 −
+------+---------+ | Id | Name | +------+---------+ | 1 | Carol | | 2 | John | | 3 | Johnson | +------+---------+ 3 rows in set (0.00 sec)
表"studenttable"包含一些记录,这些记录以行格式显示所有记录。查询如下以调整显示设置。 −
select *from studenttable \G
以下是输出 −
*************************** 1. row *************************** Id: 1 Name: Carol *************************** 2. row *************************** Id: 2 Name: John *************************** 3. row *************************** Id: 3 Name: Johnson 3 rows in set (0.04 sec)