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 = 'kk' 
  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 (
    17792, 17791, 17790, 17789, 17788, 17787, 
    17786, 17785, 17784, 17775, 17774, 
    17773, 17772, 17753, 17752, 17751, 
    17750, 17749, 17748, 17747, 17746, 
    17745, 17744, 17743, 17742, 17783, 
    17782, 17781, 17780, 17779, 17778, 
    17777, 17776, 17741, 17740, 17739, 
    17738, 17737, 17771, 17770, 17769, 
    17768, 17767, 17766, 17765, 17764, 
    17763, 17762, 17761, 17760, 17759, 
    17758, 17757, 17756, 17755, 17754, 
    17736, 17735, 17734, 17733, 17730, 
    17732, 17731, 17729, 17728, 17727, 
    17726, 17725, 17667, 17679, 17678, 
    17677, 17676, 17675, 17674, 17673, 
    17672, 17671, 17670, 17669
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00059

JSON explain

{
  "query_block": {
    "select_id": 1,
    "read_sorted_file": {
      "filesort": {
        "sort_key": "a.position",
        "table": {
          "table_name": "a",
          "access_type": "ALL",
          "possible_keys": ["PRIMARY", "c_status"],
          "rows": 4,
          "filtered": 100,
          "attached_condition": "a.product_id in (17792,17791,17790,17789,17788,17787,17786,17785,17784,17775,17774,17773,17772,17753,17752,17751,17750,17749,17748,17747,17746,17745,17744,17743,17742,17783,17782,17781,17780,17779,17778,17777,17776,17741,17740,17739,17738,17737,17771,17770,17769,17768,17767,17766,17765,17764,17763,17762,17761,17760,17759,17758,17757,17756,17755,17754,17736,17735,17734,17733,17730,17732,17731,17729,17728,17727,17726,17725,17667,17679,17678,17677,17676,17675,17674,17673,17672,17671,17670,17669) and a.`status` = 'A'"
        }
      }
    },
    "table": {
      "table_name": "b",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "9",
      "used_key_parts": ["option_id", "lang_code"],
      "ref": ["noframes_angrybeaver.a.option_id", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "trigcond(b.lang_code = 'kk')"
    },
    "table": {
      "table_name": "cscart_ult_objects_sharing",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "159",
      "used_key_parts": [
        "share_object_id",
        "share_company_id",
        "share_object_type"
      ],
      "ref": ["noframes_angrybeaver.a.option_id", "const", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "cscart_ult_objects_sharing.share_object_id = a.option_id and cscart_ult_objects_sharing.share_object_type = 'product_options'",
      "using_index": true
    }
  }
}