mysql -u root -p 等這些經常使用的參數

一,mysql命令行參數html


Usage: mysql [OPTIONS] [database]   //命令方式   
-?, --help          //顯示幫助信息並退出   
-I, --help          //顯示幫助信息並退出   
--auto-rehash       //自動補全功能,就像linux裏面,按Tab鍵出提示差很少,下面有例子   
  
-A, --no-auto-rehash  //默認狀態是沒有自動補全功能的。-A就是不要自動補全功能   
-B, --batch         //ysql不使用歷史文件,禁用交互   
(Enables --silent)   
--character-sets-dir=name   //字體集的安裝目錄                       
--default-character-set=name    //設置數據庫的默認字符集   
-C, --compress      //在客戶端和服務器端傳遞信息時使用壓縮   
-#, --debug[=#]     //bug調用功能   
-D, --database=name //使用哪一個數據庫   
--delimiter=name    //mysql默認命令結束符是分號,下面有例子   
-e, --execute=name  //執行mysql的sql語句   
-E, --vertical      //垂直打印查詢輸出   
-f, --force         //若是有錯誤跳過去,繼續執行下面的   
-G, --named-commands   
/*Enable named commands. Named commands mean this program's  
internal commands; see mysql> help . When enabled, the  
named commands can be used from any line of the query,  
otherwise only from the first line, before an enter.  
Disable with --disable-named-commands. This option is  
disabled by default.*/  
-g, --no-named-commands   
/*Named commands are disabled. Use \* form only, or use  
named commands only in the beginning of a line ending  
with a semicolon (;) Since version 10.9 the client now  
starts with this option ENABLED by default! Disable with  
'-G'. Long format commands still work from the first  
line. WARNING: option deprecated; use  
--disable-named-commands instead.*/  
-i, --ignore-spaces //忽視函數名後面的空格.   
--local-infile      //啓動/禁用 LOAD DATA LOCAL INFILE.   
-b, --no-beep       //sql錯誤時,禁止嘟的一聲   
-h, --host=name     //設置鏈接的服務器名或者Ip   
-H, --html          //以html的方式輸出   
-X, --xml           //以xml的方式輸出   
--line-numbers      //顯示錯誤的行號   
-L, --skip-line-numbers  //忽略錯誤的行號   
-n, --unbuffered    //每執行一次sql後,刷新緩存   
--column-names      //查尋時顯示列信息,默認是加上的   
-N, --skip-column-names  //不顯示列信息   
-O, --set-variable=name  //設置變量用法是--set-variable=var_name=var_value   
--sigint-ignore     //忽視SIGINT符號(登陸退出時Control-C的結果)   
-o, --one-database  //忽視除了爲命令行中命名的默認數據庫的語句。能夠幫跳過日誌中的其它數據庫的更新。   
--pager[=name]      //使用分頁器來顯示查詢輸出,這個要在linux能夠用more,less等。   
--no-pager          //不使用分頁器來顯示查詢輸出。   
-p, --password[=name] //輸入密碼   
-P, --port=#        //設置端口   
--prompt=name       //設置mysql提示符   
--protocol=name     //使用什麼協議   
-q, --quick         //不緩存查詢的結果,順序打印每一行。若是輸出被掛起,服務器會慢下來,mysql不使用歷史文件。   
-r, --raw           //寫列的值而不轉義轉換。一般結合--batch選項使用。   
--reconnect         //若是與服務器之間的鏈接斷開,自動嘗試從新鏈接。禁止從新鏈接,使用--disable-reconnect。   
-s, --silent        //一行一行輸出,中間有tab分隔   
-S, --socket=name   //鏈接服務器的sockey文件   
--ssl               //激活ssl鏈接,不激活--skip-ssl   
--ssl-ca=name       //CA證書   
--ssl-capath=name   //CA路徑   
--ssl-cert=name     //X509 證書   
--ssl-cipher=name   //SSL cipher to use (implies --ssl).   
--ssl-key=name      //X509 密鑰名   
--ssl-verify-server-cert //鏈接時審覈服務器的證書   
-t, --table         //以表格的形勢輸出   
--tee=name          //將輸出拷貝添加到給定的文件中,禁時用--disable-tee   
--no-tee            //根--disable-tee功能同樣   
-u, --user=name     //用戶名   
-U, --safe-updates  //Only allow UPDATE and DELETE that uses keys.   
-U, --i-am-a-dummy  //Synonym for option --safe-updates, -U.   
-v, --verbose       //輸出mysql執行的語句   
-V, --version       //版本信息   
-w, --wait          //服務器down後,等待到重起的時間   
--connect_timeout=# //鏈接前要等待的時間   
--max_allowed_packet=# //服務器接收/發送包的最大長度   
--net_buffer_length=# //TCP / IP和套接字通訊緩衝區大小。   
--select_limit=#    //使用--safe-updates時SELECT語句的自動限制   
--max_join_size=#   //使用--safe-updates時聯接中的行的自動限制   
--secure-auth       //拒絕用(pre-4.1.1)的方式鏈接到數據庫   
--server-arg=name   //Send embedded server this as a parameter.   
--show-warnings     //顯示警告mysql

相關文章
相關標籤/搜索