如何使用cmd進入MySQL

2021-10-21 14:41:25 字數 1004 閱讀 6075

同時按下鍵盤上的win徽標+r,選擇cmd,回車鍵開啟cmd,在命令列中輸入mysql -u root -p

切記只有這句話「mysql -u root -p 」 ,p後面沒有分號「;」,否則就會報出以下錯誤,即提醒使用者不要在cmd命令列中輸入密碼,這種做法是不安全的。

正確示例:

c:\users\hemiao>mysql -u root -p

enter password:**

****

welcome to the mysql monitor. commands end with ; or \g.

your mysql connection id is 6

server version:

5.7.17

-log mysql community server (gpl)

2000

,2016

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type 'help;' or '\h'

for help. type '\c' to clear the current input statement.

錯誤示例:

c:\users\hemiao>mysql -u root -p;

mysql:

[warning] using a password on the command line inte***ce

can be insecure.

error 1045

(28000

): access denied for user 'root'@'localhost'

(using password: yes)

cmd進入目錄

1.開始 執行 cmd 2.進入某個磁碟,直接碟符代號 如d 不用cd 命令切換 3.進入除根錄以下的資料夾 cd 資料夾路徑 例如我要進入 e program files php 就 輸入 e 回車注 不 能在一開啟cmd的時候執行cd e program files php,需要先進入磁碟 若一...

如何進入MySQL

c users 電腦id d d cd d wamp wamp64 bin mysql mysql5.7.19 bin d wamp wamp64 bin mysql mysql5.7.19 bin mysql hlocalhost uroot p enter password welcome to...

CMD魔法堂 CMD進入指定目錄

一 前言 每次開啟cmd預設目錄總是當前使用者目錄,然後是一大輪cd命令才進入工作目錄,哎,怎乙個煩自了得。幸好我們可以通過批處理檔案來進入指定目錄,省心多了。二 cmd命令介紹 cmd a u q d e on e off f on f off v on v off s c k string c ...