Mysql
 sql >> Database >  >> RDS >> Mysql

Come mostrare i record verticalmente nella riga di comando di MySQL?

Penso che tu stia usando \g invece di \G . A meno che non utilizzi \G ottieni il modello di output predefinito. L'impostazione predefinita è \g .

mysql> show databases\g
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
+--------------------+
3 rows in set (0.00 sec)

mysql> show databases\G
*************************** 1. row ***************************
Database: information_schema
*************************** 2. row ***************************
Database: mysql
*************************** 3. row ***************************
Database: test
3 rows in set (0.00 sec)