2015/04/19

MariaDBでデータベースとテーブルの作成

MariaDBでデータベース、テーブル、ユーザの作成方法メモ

・MariaDBログイン

rootでログイン。「-u root」でログインユーザをrootに、「-p」でパスワード入力。
# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 6
Server version: 5.5.41-MariaDB MariaDB Server

Copyright (c) 2000, 2014, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> 

・データベース作成

データベース「exampleDB」を作成。
MariaDB [(none)]> create database exampleDB;
Query OK, 1 row affected (0.00 sec)

データベースが作成されているかを確認。
MariaDB [(none)]> MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| exampleDB          |
| mysql              |
| performance_schema |
+--------------------+
4 rows in set (0.00 sec)

・テーブルの作成

作成した「exampleDB」に移動してテーブル「exampleTable」を作成。
MariaDB [(none)]> use exampleDB
Database changed
MariaDB [exampleDB]> create table exampleTable(num int,name varchar(50));
Query OK, 0 rows affected (0.24 sec)

テーブルの確認
MariaDB [exampleDB]> show tables;
+---------------------+
| Tables_in_exampleDB |
+---------------------+
| exampleTable        |
+---------------------+
1 row in set (0.00 sec)

データ登録
MariaDB [exampleDB]> insert into exampleTable values(1,'aaa');
Query OK, 1 row affected (0.06 sec)

MariaDB [exampleDB]> insert into exampleTable values(2,'bbb');
Query OK, 1 row affected (0.07 sec)

MariaDB [exampleDB]> select * from exampleTable;
+------+------+
| num  | name |
+------+------+
|    1 | aaa  |
|    2 | bbb  |
+------+------+
2 rows in set (0.00 sec)

以上。

参考:
CentOS7 MariaDBのインストール

2 件のコメント:

  1. 今日は!
    maradbの初心者仁つき大変参考になりました。
    感謝!!!

    返信削除
  2. 新卒のプログラマーにやさしい内容で大変わかりやすかったです。
    参考になりました。ありがとうございます!!!

    返信削除