【发布时间】:2019-01-12 05:54:15
【问题描述】:
我在 mysql 提示符中运行了查询,我需要在输出提示符中抑制“集合中的 1 行(0.00 秒)”。我该怎么做呢
mysql> select concat( " Total Records in Transaction Table : ", count(*) ) from transaction_process ;
+--------------------------------------------------------------+
| concat( " Total Records in Transaction Table : ", count(*) ) |
+--------------------------------------------------------------+
| Total Records in Transaction Table : 0 |
+--------------------------------------------------------------+
1 row in set (0.00 sec)
【问题讨论】: