mysqlの開発者用サイトです。
MySQL
データベースには、テーブル、フィールド(列)、レコード(行)の概念があります。Excelのスプレッドシートのように考えると分かり易いです。
mysqlの起動では、ユーザー名を入れて起動します。
[vagrant@localhost ~]$ mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.6.34 MySQL Community Server (GPL) Copyright (c) 2000, 2016, 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. mysql>
パスワードの設定は以下の通りです。
set password for root@localhost=password(”)
データベースの作り方は、create databaseで作れます。
mysql> create database blog_app; Query OK, 1 row affected (0.12 sec)
一覧表示
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | blog_app | | mysql | | performance_schema | +--------------------+ 4 rows in set (0.14 sec)
データベースの削除
mysql> drop database blog_app; Query OK, 0 rows affected (0.21 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | +--------------------+ 3 rows in set (0.00 sec)
データベースの利用
mysql> use test; Database changed
作業ユーザーの設定方法
mysql> create database blog_app; Query OK, 1 row affected (0.06 sec) mysql> grant all on blog_app.* to dbuser@localhost identified by 'xxxx'; Query OK, 0 rows affected (0.16 sec)
作業ユーザーでのログイン
[vagrant@localhost ~]$ mysql -u dbuser -p blog_app Enter password: