mysql にrootでログイン
#mysql -u root -p
パスワードを聞かれる
Enter password:
ログイン成功すると下記表示
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 48 Server version: 5.1.41-3ubuntu12.3 (Ubuntu) Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql >
データベースを表示
mysql> show databases;
データベースを選択
mysql> use [テーブル名];
データベース内のテーブルを表示
mysql> show tables;