本サイトのコンテンツには、商品プロモーションが含まれている場合があります。

mysql

【Mysql】mysql にrootでログイン-データベース選択 【Mysql】How to login mysql at root user

スポンサーリンク

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;

-mysql
-