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 = 'ja' 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = a.option_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_options'
  ) 
WHERE 
  a.product_id IN (
    1623, 1614, 1604, 1801, 1802, 1724, 1727, 
    1726, 1599, 1725, 1600, 1872, 1603, 
    1560, 1513, 1550, 1548, 1547, 1763, 
    1764, 1506, 1735, 1602, 1601, 1692, 
    1696, 1682, 1743, 1556, 1555, 1554, 
    1553
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00042

JSON explain

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