如何在命令行提示符中使用 MySQL 二进制文件建立 MySQL 数据库?


你可以使用命令提示符中的 mysql 二进制文件建立 MySQL 数据库。以下示例可以帮助理解 −

示例

我们可以使用以下语句从命令提示符连接到 MySQL 服务器 −

[root@host]# mysql -u root -p
Enter password:******

这将为我们提供 mysql> 命令提示符,我们可以在其中执行任何 SQL 命令。以下是上述命令的结果 −

以下代码块显示了上述代码的结果 −

Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.20 MySQL Community Server (GPL)

Copyright (c) 2000, 2017, 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.

在上面的示例中,我们使用 root 作为用户,但你也可以使用任何其他用户。任何用户都能够执行该用户允许的所有 SQL 操作。

我们可以随时使用 mysql> 提示符中的exit 命令断开与 MySQL 数据库的连接。 

mysql> exit
Bye

更新时间: 20-Jun-2020

104 次浏览

开始您的 职业生涯

完成课程取得认证

开始
广告