SELECT 
  option_id, 
  option_type 
FROM 
  tmall_product_options 
WHERE 
  option_id IN (9, 1, 2)

Query time 0.00774

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.00594202,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_product_options",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["option_id"],
          "loops": 1,
          "rows": 3,
          "cost": 0.00594202,
          "filtered": 100,
          "index_condition": "tmall_product_options.option_id in (9,1,2)"
        }
      }
    ]
  }
}

Result

option_id option_type
1 S
2 S
9 S