01.MySQL
修改 root 密码 不成功
1 | Open & Edit /etc/my.cnf or /etc/mysql/my.cnf, depending on your distro. |
1 | drop user root@localhost; |
mac brew 重装 不成功
1 | brew uninstall mysql --ignore-dependencies |
索引
创建索引
1 | alter table t_zxg_hot_news_result add index |
删除索引
1 | alter table t_zxg_hot_news_result drop index idx_hot_news_cnt ; |
查询索引
1 | show index from t_zxg_hot_news_result; |