一、以Windows系統爲例,經過cmd命令行登陸mysql數據庫的命令爲:mysql
mysql -p(password) -u(username) -h(service IP)sql
登陸提示:數據庫
[Warning] Using a password on the command line interface can be insecure.安全
[警告]直接在命令行使用明碼密碼是不安全的ui
推薦使用命令mysql -p -u(username) -h(service IP);先不直接輸入密碼,提示Enter password,再輸入密碼,能夠借竟然以上問題。this
成功登陸mysql以後,提示以下:spa
Welcome to the MySQL monitor. Commands end with ; or \g.[提示:mysql命令以;或者\g爲結束符]命令行
Your MySQL connection id is 22
Server version: 5.7.11-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.orm
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.server
[提示:鍵入help或者\h能夠獲取幫助信息;clear或者\c能夠清除當前鍵入的命令]
二、鍵入help輸出幫助信息以下:
Note that all text commands must be first on line and end with ';'
? (\?) Synonym for `help'.
clear (\c) Clear the current input statement.
connect (\r) Reconnect to the server. Optional arguments are db and host.
delimiter (\d) Set statement delimiter.
ego (\G) Send command to mysql server, display result vertically.
exit (\q) Exit mysql. Same as quit.
go (\g) Send command to mysql server.
help (\h) Display this help.
notee (\t) Don't write into outfile.
print (\p) Print current command.
prompt (\R) Change your mysql prompt.
quit (\q) Quit mysql.
rehash (\#) Rebuild completion hash.
source (\.) Execute an SQL script file. Takes a file name as an argument.
status (\s) Get status information from the server.
tee (\T) Set outfile [to_outfile]. Append everything into given outfile.
use (\u) Use another database. Takes database name as argument.
charset (\C) Switch to another charset. Might be needed for processing binlog
with multi-byte charsets.
warnings (\W) Show warnings after every statement.
nowarning (\w) Don't show warnings after every statement.