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 = 'en' 
  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 (
    148, 
    180, 
    18, 
    16, 
    4, 
    5, 
    23, 
    24, 
    1, 
    22, 
    149, 
    227, 
    190, 
    189, 
    245, 
    238, 
    239, 
    242, 
    243, 
    241, 
    240, 
    214, 
    217, 
    218, 
    207, 
    59, 
    58, 
    60, 
    172, 
    134, 
    135, 
    168, 
    167, 
    169, 
    42, 
    39, 
    40, 
    205, 
    37, 
    74, 
    73, 
    71, 
    75, 
    72, 
    70, 
    156, 
    175, 
    43, 
    76, 
    56, 
    57, 
    30, 
    246, 
    208, 
    173, 
    229, 
    211, 
    210, 
    209, 
    67, 
    25, 
    213, 
    215, 
    226, 
    154, 
    53, 
    52, 
    228, 
    161, 
    165, 
    166, 
    86, 
    106, 
    105, 
    247, 
    101, 
    33, 
    32, 
    163, 
    244, 
    212, 
    155, 
    55, 
    69, 
    206, 
    184, 
    183, 
    133, 
    132, 
    125, 
    120, 
    223, 
    225, 
    224, 
    146, 
    147, 
    145, 
    117, 
    219, 
    222, 
    220, 
    221, 
    113, 
    157, 
    68, 
    29, 
    6, 
    8, 
    14, 
    9, 
    10, 
    19, 
    21, 
    50, 
    51, 
    49, 
    48, 
    54, 
    153, 
    164, 
    248, 
    65, 
    64, 
    63, 
    62, 
    66, 
    140, 
    141
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00077

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "38.08"
    },
    "ordering_operation": {
      "using_filesort": true,
      "cost_info": {
        "sort_cost": "10.00"
      },
      "nested_loop": [
        {
          "table": {
            "table_name": "a",
            "access_type": "ALL",
            "possible_keys": [
              "PRIMARY",
              "c_status"
            ],
            "rows_examined_per_scan": 10,
            "rows_produced_per_join": 10,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "2.08",
              "eval_cost": "2.00",
              "prefix_cost": "4.08",
              "data_read_per_join": "22K"
            },
            "used_columns": [
              "option_id",
              "product_id",
              "company_id",
              "option_type",
              "regexp",
              "required",
              "multiupload",
              "allowed_extensions",
              "max_file_size",
              "missing_variants_handling",
              "status",
              "position",
              "value"
            ],
            "attached_condition": "((`rajansecarter_single_store_19_jan`.`a`.`product_id` in (148,180,18,16,4,5,23,24,1,22,149,227,190,189,245,238,239,242,243,241,240,214,217,218,207,59,58,60,172,134,135,168,167,169,42,39,40,205,37,74,73,71,75,72,70,156,175,43,76,56,57,30,246,208,173,229,211,210,209,67,25,213,215,226,154,53,52,228,161,165,166,86,106,105,247,101,33,32,163,244,212,155,55,69,206,184,183,133,132,125,120,223,225,224,146,147,145,117,219,222,220,221,113,157,68,29,6,8,14,9,10,19,21,50,51,49,48,54,153,164,248,65,64,63,62,66,140,141)) and (`rajansecarter_single_store_19_jan`.`a`.`status` = 'A'))"
          }
        },
        {
          "table": {
            "table_name": "b",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "option_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "rajansecarter_single_store_19_jan.a.option_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 10,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "10.00",
              "eval_cost": "2.00",
              "prefix_cost": "16.08",
              "data_read_per_join": "33K"
            },
            "used_columns": [
              "option_id",
              "lang_code",
              "option_name",
              "internal_option_name",
              "option_text",
              "description",
              "comment",
              "inner_hint",
              "incorrect_message"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_ult_objects_sharing",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "share_object_id",
              "share_company_id",
              "share_object_type"
            ],
            "key_length": "159",
            "ref": [
              "rajansecarter_single_store_19_jan.a.option_id",
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 10,
            "filtered": "100.00",
            "using_index": true,
            "cost_info": {
              "read_cost": "10.00",
              "eval_cost": "2.00",
              "prefix_cost": "28.08",
              "data_read_per_join": "1K"
            },
            "used_columns": [
              "share_company_id",
              "share_object_id",
              "share_object_type"
            ],
            "attached_condition": "(`rajansecarter_single_store_19_jan`.`cscart_ult_objects_sharing`.`share_object_id` = `rajansecarter_single_store_19_jan`.`a`.`option_id`)"
          }
        }
      ]
    }
  }
}