使用cmd进入MySQL数据库(cmd进入mysql)

Windows系统中使用CMD进入MySQL数据库是非常重要的一环,下面给出进入MySQL数据库的具体步骤:

1、首先在Windows系统中,找到“开始”—“运行”,输入“cmd”,进入命令行界面:

图示:

![cmd](./img/cmd.png)

2、接着,请在命令行界面中,输入以下指令:

C:> cd\mysql\bin

之后,根据系统对话框要求输入MySQL的用户名和密码即可登录到MySQL的数据库:

C:\mysql\bin> mysql -u Username -p
Enter password: ********

如果登录成功,可以看到以下信息:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 8.0.11 MySQL Community Server - GPL
Copyright (c) 2000, 2018, 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.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.



mysql>

以上就是使用cmd进入MySQL数据库的具体步骤,如果想要退出MySQL,可以在命令行界面中输入“exit”即可完成退出操作。


数据运维技术 » 使用cmd进入MySQL数据库(cmd进入mysql)