SELECT 
  option_id, 
  option_type 
FROM 
  tmall_product_options 
WHERE 
  option_id IN (11, 13, 14, 15, 25, 20, 1)

Query time 0.00761

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.01159965,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_product_options",
          "access_type": "ALL",
          "possible_keys": ["PRIMARY"],
          "loops": 1,
          "rows": 10,
          "cost": 0.01159965,
          "filtered": 70,
          "attached_condition": "tmall_product_options.option_id in (11,13,14,15,25,20,1)"
        }
      }
    ]
  }
}

Result

option_id option_type
1 S
11 C
13 C
14 S
15 C
20 C
25 S