コマンド プロンプトで 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 バイナリを使用して MySQL データベースを構築するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。