您可以在命令提示字元使用 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 資料庫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!