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 (
    2028, 2118, 2116, 2117, 1966, 1967, 1965, 
    2026, 2027, 2131, 1938, 2025, 1899, 
    1910, 1872, 1850, 1883, 1810, 1851, 
    1884
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00017

JSON explain

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