0
私はデータベースとmysqlが初めてです。mysql - 端末でコマンドを実行できませんか?
sudo mysql -u root -p
を実行した後、自分のパスワードを入力すると、mysqlに正常に入ります。 (私はMac OS X 10.10
の下にいます)
しかし、私はデータベースを作成しようとしたときに何か問題がありました。
$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 16
Server version: 5.6.23 MySQL Community Server (GPL)
Copyright (c) 2000, 2015, 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> create database test
-> exit
->
どうしたのですか?
申し訳ありませんが、セミコロンが欠落することができると信じています。セミコロンを追加すると、データベースが作成され、 'show databases;'の実行結果に表示されます。しかし、ファイルはどこにありますか?私はホームディレクトリの下でmysqlを実行するが、私はそれにデータベースファイルを見つけることができません? –
これは、データベースの場所を説明すると信じています。http://stackoverflow.com/questions/26402884/where-does-mysql-store-dataデータベースを使った作業に慣れ親しむために、クラッシュコースタイプのチュートリアルをお勧めしますおそらくhttp://www.mysqltutorial.orgのように –