Skip to content

Instantly share code, notes, and snippets.

@sahara-ooga
Created January 21, 2020 12:37
Show Gist options
  • Save sahara-ooga/25023cfb7c98aa43aacd5d9dbf121e39 to your computer and use it in GitHub Desktop.
Save sahara-ooga/25023cfb7c98aa43aacd5d9dbf121e39 to your computer and use it in GitHub Desktop.
逆算式SQL教科書

macでサンプルデータを使うまで

サポートページからデータをダウンロードする。

データを解凍し、make_data.sqlを開いて、文字コードをutf8に変更し保存する。

以降、MySQLを立ち上げてSQLファイルを実行しデータベースを構成する。

$ mysql -uroot #root実行
mysql> show databases;
mysql> use foo
mysql> source make_data_copy.sql
mysql> select * from shain;

+----------+-----------------+------+----------+---------------------------------------------------+---------------+--------------------------+
| shain_id | shain_name      | sex  | post     | address                                           | telno         | email                    |
+----------+-----------------+------+----------+---------------------------------------------------+---------------+--------------------------+
|        1 | 田山恵一郎      |    1 | 641-0025 | 和歌山県和歌山市和歌浦中3044                      | 999-9146-2666 | [email protected] |
|        2 | 吉原裕太        |    1 | 365-0077 | 埼玉県鴻巣市雷電978                               | 999-7432-9413 | [email protected]    |
|        3 | 水浦恵美        |    2 | 300-0434 | 茨城県稲敷郡美浦村堀田5759                        | 999-4815-7541 | [email protected]       |
|        4 | 水村恵雄        |    1 | 515-2525 | 三重県津市一志町石橋5863                          | 999-1908-1942 | [email protected]   |
|        5 | 野山順雄        |    1 | 670-0895 | 兵庫県姫路市北平野台町2038                        | 999-5626-6699 | [email protected]  |
|        6 | 田島純一郎      |    1 | 615-8192 | 京都府京都市西京区川島寺田町2597                  | 999-3522-7778 | [email protected]  |
|        7 | 池浦清義        |    1 | 930-2241 | 富山県富山市四方西岩瀬6872                        | 999-7165-3835 | [email protected]     |
|        8 | 川浦純一        |    1 | 311-0115 | 茨城県那珂市西木倉6573                            | 999-6557-6483 | [email protected]   |
|        9 | 池崎浩子        |    2 | 369-1101 | 埼玉県深谷市長在家2246                            | 999-9813-1306 | [email protected]      |
|       10 | 中島清実        |    1 | 086-1059 | 北海道標津郡中標津町東十九条北1512                | 999-3783-6927 | [email protected]    |
+----------+-----------------+------+----------+---------------------------------------------------+---------------+--------------------------+
10 rows in set (0.00 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment