您可以在命令提示符處使用?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
登錄后復制
以上就是我們如何在命令提示符下使用 MySQL 二進制文件來建立 MySQL 數據庫?的詳細內容,更多請關注www.92cms.cn其它相關文章!