SELECT 
  a.*, 
  b.option_name, 
  b.internal_option_name, 
  b.option_text, 
  b.description, 
  b.inner_hint, 
  b.incorrect_message, 
  b.comment 
FROM 
  cscart_product_options as a 
  LEFT JOIN cscart_product_options_descriptions as b ON a.option_id = b.option_id 
  AND b.lang_code = 'en' 
WHERE 
  a.product_id IN (
    2237, 11920, 2184, 2231, 2288, 2346, 
    2348, 2345, 2344, 2350, 2250, 2223, 
    13349, 2355, 2204, 2273, 2278, 2275, 
    2276, 2277, 2272, 2274, 4359, 2326, 
    2251, 2293, 2294, 2295, 2247, 2248
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00018

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "message": "Impossible WHERE noticed after reading const tables"
    }
  }
}