よく使うコマンド
- 実行結果をファイル出力
echo " select * from table limit 10; " | mysql -h*** -u*** database > ~/data.tsv
- IndexやDataのsizeを知る
show table status from [db_name] like '[table_name]' \G
- テーブルスキーマを調べる
show create table [table_name] \G
- データベースの一覧
show databases;
- テーブルの一覧
show tables;
- カラムの一覧
show columns from [table];