mysql 自定义提示符
mysql prompt的用法詳解
--prompt=name 我們登入mysql數(shù)據(jù)庫(kù)后,mysql的提示符只是一個(gè)很簡(jiǎn)單內(nèi)容 mysql> ,沒(méi)有其他任何信息。
通過(guò)--prompt=name可以自定義提示信息,通過(guò)配置顯示登入的主機(jī)地址,登陸用戶名,當(dāng)前時(shí)間,當(dāng)前數(shù)據(jù)庫(kù)等。
參數(shù)如下:
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提示符下直接修改,只對(duì)當(dāng)前會(huì)話生效。
mysql>\R mysql(\d)>mysql(yoy)>use test; Database changed mysql(test)>?
方法二:在my.cnf配置文件的[mysql]下修改,永久生效。
[mysql]
prompt="\\u@\\h?:\\d\\r:\\m:\\s>"
轉(zhuǎn)載于:https://www.cnblogs.com/sunny18/p/9007593.html
總結(jié)
以上是生活随笔為你收集整理的mysql 自定义提示符的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 多线程之synchronized
- 下一篇: javascript中获取dom元素高度