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 (
    1900, 1813, 1767, 1764, 1893, 1857, 2147, 
    1790, 1877, 1858, 1876, 1841, 1796, 
    2329, 2330, 1860, 2148, 2152, 1868, 
    1881, 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.00023

JSON explain

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