CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name
    [index_type]
    ON tbl_name (index_col_name,...)index_col_name:
    col_name [(length)] [ASC | DESC]index_type:
    USING {BTREE | HASH}PS:
set your index on those condition field. after setting up the index, you would feel a bit of slowly when inserting or deleting, because the index is working. But you would see the searching is much fast.