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 = 'pl' 
WHERE 
  a.product_id IN (
    2227, 2060, 2122, 2274, 2061, 1957, 1814, 
    2331, 1748, 2005, 2214, 2342, 2215, 
    2211, 2225, 2212, 2213, 2226, 2303, 
    2260, 2195, 2130, 2332, 1840, 2163, 
    2173, 2175, 2177, 2176, 2070, 2069, 
    2351, 2209, 2261, 2174, 2235
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00014

JSON explain

{
  "query_block": {
    "select_id": 1,
    "message": "no matching row in const table"
  }
}