SELECT 
  object_id, 
  name 
FROM 
  q_seo_names 
WHERE 
  name IN (
    'fashion', 'watches', 'men-watches'
  ) 
  AND type = 'c' 
  AND lang_code = 'en'

Query time 0.00059

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "7.21"
    },
    "table": {
      "table_name": "q_seo_names",
      "access_type": "range",
      "possible_keys": [
        "name",
        "type"
      ],
      "key": "type",
      "used_key_parts": [
        "name",
        "type",
        "lang_code"
      ],
      "key_length": "761",
      "rows_examined_per_scan": 3,
      "rows_produced_per_join": 3,
      "filtered": "100.00",
      "index_condition": "((`portal`.`q_seo_names`.`name` in ('fashion','watches','men-watches')) and (`portal`.`q_seo_names`.`type` = 'c') and (`portal`.`q_seo_names`.`lang_code` = 'en'))",
      "cost_info": {
        "read_cost": "6.61",
        "eval_cost": "0.60",
        "prefix_cost": "7.21",
        "data_read_per_join": "5K"
      },
      "used_columns": [
        "name",
        "object_id",
        "type",
        "lang_code"
      ]
    }
  }
}

Result

object_id name
12 fashion
97 men-watches
95 watches