初めてのmySQL


mySQLを使う際の決まり事

  • SQLコマンドに大文字・小文字の区別はない
  • データベース名とテーブル名には大文字・小文字の区別がある
  • SQLコマンドの最後には必ず";"(セミコロン)を押し、エンターキー

mySQLの起動

mysql
起動
mysql -u root
ルート(管理者)ユーザーで起動
mysql -u root -p
パスワードを入力して起動
mysql -u usrname @ userhost -p usrpass
ユーザー名:usrname、ホスト名:userhost、パスワード:usrpassで起動

実行結果:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.43-community MySQL Community Server (GPL)

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

データベースの確認

show databases;

実行結果:

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| selfphp            |
+--------------------+
3 rows in set (0.00 sec)