欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

mysql 自定义提示符

发布时间:2025/7/14 36 豆豆
生活随笔 收集整理的这篇文章主要介绍了 mysql 自定义提示符 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

mysql prompt的用法详解

--prompt=name 我们登入mysql数据库后,mysql的提示符只是一个很简单内容 mysql> ,没有其他任何信息。

通过--prompt=name可以自定义提示信息,通过配置显示登入的主机地址,登陆用户名,当前时间,当前数据库等。

参数如下:

Option  Description
\c  A counter that increments for each statement you issue
\D  The full current date
\d The default database
\h The server host
\l The current delimiter (new in 5.1.12)
\m  Minutes of the current time
\n  A newline character
\O  The current month in three-letter format (Jan, Feb, …)
\o  The current month in numeric format
\P  am/pm
\p The current TCP/IP port or socket file
\R  The current time, in 24-hour military time (0–23)
\r  The current time, standard 12-hour time (1–12)
\S  Semicolon
\s  Seconds of the current time
\t  A tab character
\U   

\u Your user name
\v  The server version
\w  The current day of the week in three-letter format (Mon, Tue, …)
\Y  The current year, four digits
\y  The current year, two digits
\_  A space
\   A space (a space follows the backslash)
\'  Single quote
\"  Double quote
\\  A literal “\” backslash character
\x 
x, for any “x” not listed above

方法一:在mysql提示符下直接修改,只对当前会话生效。

mysql>\R mysql(\d)>mysql(yoy)>use test; Database changed mysql(test)>

 

方法二:在my.cnf配置文件的[mysql]下修改,永久生效。

[mysql]
prompt="\\u@\\h :\\d\\r:\\m:\\s>"

转载于:https://www.cnblogs.com/sunny18/p/9007593.html

总结

以上是生活随笔为你收集整理的mysql 自定义提示符的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。