SELECT 
  option_type as type, 
  option_id 
FROM 
  product_options 
WHERE 
  option_id IN (
    33885, 33886, 33887, 33888, 33889, 33890
  )

Query time 0.00052

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "4.12"
    },
    "table": {
      "table_name": "product_options",
      "access_type": "range",
      "possible_keys": [
        "PRIMARY"
      ],
      "key": "PRIMARY",
      "used_key_parts": [
        "option_id"
      ],
      "key_length": "3",
      "rows_examined_per_scan": 6,
      "rows_produced_per_join": 6,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "3.52",
        "eval_cost": "0.60",
        "prefix_cost": "4.12",
        "data_read_per_join": "18K"
      },
      "used_columns": [
        "option_id",
        "option_type"
      ],
      "attached_condition": "(`goimagine`.`product_options`.`option_id` in (33885,33886,33887,33888,33889,33890))"
    }
  }
}

Result

type option_id
C 33885
C 33886
C 33887
C 33888
C 33889
C 33890