前回は、「リレーショナルデータベース」の一つである「MySQL」のインストール方法をご紹介した。
MySQLに接続するには、mysqlクライアントを使う。
まずは、実際に触ってみながら慣れていこう。
なお、本記事は、ノートパソコン(Intel(R) Core(TM) i7-8565U CPU、メモリ8.00 GB)のWindows 11 Home(23H2)で検証を行っている。
mysqlクライアントを使ってみよう
スタートボタンを右クリックして、表示されたメニューから「ターミナル」をクリックする。
ターミナルが起動する。
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
PS C:\Users\rocky.Note-PC>
mysqlクライアントを起動するには、
mysql -u root -p
と入力して、Enterキーを押す。
PS C:\Users\rocky.Note-PC> mysql -u root -p
パスワードを要求されるので、インストール時に設定したパスワードを入力しよう。
Enter password: ******
ウエルカムメッセージが表示され、プロンプトが「mysql>」となる。
これで、MySQLに接続できた。
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 14
Server version: 8.0.40 MySQL Community Server - GPL
Copyright (c) 2000, 2024, Oracle and/or its affiliates.
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>
mysqlクライアントを終了するには、
exit;
と入力して、Enterキーを押す。
mysql> exit;
Bye
PS C:\Users\rocky.Note-PC>4>
元のプロンプトに戻れば、mysqlクライアントは終了している。
(参考)3ステップでしっかり学ぶ MySQL入門 [改訂第3版] 山田奈美(著)山田祥寛(監修)技術評論社
コメント