MySQL是一個廣泛使用的開源關系型數據庫系統。MySQL的登陸系統非常簡單,只需要提供正確的用戶名和密碼就可以完成登錄。
$ mysql -h localhost -u root -p Enter password:
其中,-h參數指定MySQL所在的主機,-u參數指定登錄用戶名,-p則表示需要輸入密碼。登錄成功后,提示符會變為"mysql>"。
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.6.42-84.2-log Percona Server (GPL), Release 84.2, Revision 357f77c Copyright (c) 2009-2019 Percona LLC and/or its affiliates. All rights reserved. Percona Server is an enhanced drop-in replacement for MySQL. Copyright (c) 2009-2019 Percona LLC and/or its affiliates. All rights reserved. Percona Server software is distributed under the GPL version 2.
在MySQL中,可以進行各種操作,如創建、刪除、查詢數據庫。退出登錄,可以使用如下命令:
mysql>exit
也可以使用如下快捷方式:
$ mysql -h localhost -u root -p -e "quit" Enter password:
以上就是關于MySQL登錄的基本內容。
上一篇mysql界面是怎么樣的
下一篇mysql疑問