0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

データエンジニア初心者日記(2)

Last updated at Posted at 2025-02-25

今日の勉強内容

前回に続き、MacbookにMySqlをインストールしてみました。

MySqlのインストール

Homebrewを使い、
brew install mysql
でインストールを実施。

brew services start mysql
でMySqlを実行。

Worldデータベースの追加

今進めている「おうちで学べるデータベースのきほん」ではWorldデータベースを使うとのことで、下記を参考に入れてみました。

私はworld databaseをzip形式でダウンロードしました。
まずは
mysql.server start
でmySQLを起動。
パスワードを設定し、
mysql -u root -p mysql < world.sql
でデータをインポートしました。

次に、
mysql -u root -p
でmySQLへ接続し、
show databases;
を入力したところ、worldが表示され、インポートされたことを確認しました。

これで書籍に書いてあるワークができるようになったようなので、戻ります!

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?