Suppress mysql update query output
How do i stop mysql from printing the result of a recent UPDATE query? i.e when we execute a mysql query, we have the following output:
Query OK, 1 r开发者_运维知识库ow affected (0.04 sec)
Rows matched: 1 Changed: 1 Warnings: 0
how do i stop mysql from printing this?
Use --silent when you have the program mysql started.
精彩评论