【メモ】MySQLのあれこれ
インフラエンジニアさんとかいれば任せられるんですがね。
プログラマなのでたまにしか使わないから忘れちゃうMySQLのあれこれの備忘録。
ユーザー確認
select Host, User from mysql.user;
ユーザー権限確認
show grants for "username"@"localhost";
インデックス追加
テーブル作成時
create table test_tabel ( id int not null primary key, title varchar(255) default null, index index_name(title) );
インデックス確認
show index from test_table;