MySQLでテーブル一覧を表示する
MySQLであるデータベース(sample_db)に作成済みのテーブル一覧を取得する方法です。たとえば Mac OS X なら 「/usr/local/mysql/bin/mysql -u root -p」等で mysql を起動している前提です。
「use データベース名;」で処理対象のデータベースを明示した後、「show tables;」で一覧できます。以下の様なイメージです。
mysql> use sample_db; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> show tables; +---------------------+ | Tables_in_sample_db | +---------------------+ | 参加者 | | 講座情報 | | 講座申し込み | | 講座開催情報 | | 連絡情報 | +---------------------+ 5 rows in set (0.00 sec) mysql>