やりたいこと
mysqlが公式に提供するサンプルデータベースをインポートしたいです。
経緯
terminalでホームディレクトリに移動し、
terminal
1brew install mysql
を実行してmysqlをインストールし、
terminal
1mysql.server start 2mysql -uroot
でmysqlを実行しました。
ここで、
mysql
1SOURCE Users/[ユーザー名]/Documents/IT_education/MySQL/sakila-db/sakila-schema.sql;
を実行したところ、下記のエラーが発生しました。
mysql
1ERROR: 2Failed to open file 'Users/[ユーザー名]/Documents/IT_education/MySQL/sakila-db/sakila-schema.sql', error: 2
相対パスでもできないか試してみました。
mysql
1SOURCE Documents/IT_education/MySQL/sakila-db/sakila-schema.sql;
を実行したところ、下記のエラーが発生しました。
mysql
1ERROR: 2Failed to open file 'Documents/IT_education/MySQL/sakila-db/sakila-schema.sql', error: 1
このエラーの対処法を教えていただきたいです。よろしくお願いします。
あなたの回答
tips
プレビュー