個人環境:window十、MySQL5.7html
在cmd中輸入下面的內容:mysql
host(服務器地址)、user(用戶名)、-p(須要輸入密碼)sql
mysql -h host -u user -p
結果以下:數據庫
如過你登錄的是本機上的數據庫,能夠省略host:服務器
mysql -u user -p
結果以下:ui
某些安裝或者設置的mysql容許用戶匿名登錄,你能夠直接輸入mysql登入:this
Some MySQL installations permit users to connect as the anonymous (unnamed) user to the server running on the local host. If this is the case on your machine, you should be able to connect to that server by invoking mysql without any options:code
mysql
結果以下(我電腦上的設置反正是不容許的):server
退出mysql服務器:htm
quit
exit
Ctrl + Z(Enter)
聽說,Unix上能夠使用Ctrl+D退出鏈接。
參考: