मुझे लगता है कि आप \g
. का उपयोग कर रहे हैं \G
. के बजाय . जब तक आप \G
. का उपयोग नहीं करते हैं आपको डिफ़ॉल्ट आउटपुट पैटर्न मिलता है। डिफ़ॉल्ट है \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)