Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in
...
管理索引创建索引
12CREATE INDEX [UNIQUE] index_name ON tbl_name (index_col_name[(length)],...);help CREATE INDEX;
删除索引
1DROP INDEX index_name ON tbl_name;
查
...