大家通过mysql客户端连接到服务器时,管理时,不知道当前在哪个数据库中。下面通过定义prompt来实现。只要在你的my.cnf的[mysql]加入如下内容:

prompt=\\u@\\d \\r:\\m\\_>

注意:搞清楚你的mysql调用的哪个位置的my.cnf,不要搞错了。

使用mysql客户端登录mysql服务器。默认类似如下:

root@(none) 03:16 >

进入一个db。

root@(none) 03:16 >use testdb;

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

Database changed

root@testdb 03:16 >

可以看到,前面是当前账户root,@后面是数据库名称。是不是很方便。如果想做更多的自定义,百度一下"mysql prompt". 快去玩耍吧。