SELECT 
  pf.feature_id, 
  pf.company_id, 
  pf.feature_type, 
  pf.parent_id, 
  pf.display_on_product, 
  pf.display_on_catalog, 
  pf.display_on_header, 
  cscart_product_features_descriptions.description, 
  cscart_product_features_descriptions.internal_name, 
  cscart_product_features_descriptions.lang_code, 
  cscart_product_features_descriptions.prefix, 
  cscart_product_features_descriptions.suffix, 
  pf.categories_path, 
  cscart_product_features_descriptions.full_description, 
  pf.status, 
  pf.comparison, 
  pf.position, 
  pf.purpose, 
  pf.feature_style, 
  pf.filter_style, 
  pf.feature_code, 
  pf.timestamp, 
  pf.updated_timestamp 
FROM 
  cscart_product_features AS pf 
  LEFT JOIN cscart_product_features_descriptions ON cscart_product_features_descriptions.feature_id = pf.feature_id 
  AND cscart_product_features_descriptions.lang_code = 'ru' 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = pf.feature_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_features'
  ) 
WHERE 
  pf.feature_type = 'G' 
  AND (
    pf.feature_id IN ('') 
    OR pf.feature_id NOT IN (
      SELECT 
        parent_id 
      FROM 
        cscart_product_features
    )
  ) 
  AND pf.display_on_product = 'Y' 
  AND (
    pf.categories_path = '' 
    OR ISNULL(pf.categories_path) 
    OR FIND_IN_SET(302, pf.categories_path) 
    OR FIND_IN_SET(303, pf.categories_path) 
    OR FIND_IN_SET(306, pf.categories_path) 
    OR FIND_IN_SET(324, pf.categories_path) 
    OR FIND_IN_SET(567, pf.categories_path) 
    OR FIND_IN_SET(575, pf.categories_path)
  ) 
ORDER BY 
  pf.position, 
  cscart_product_features_descriptions.description

Query time 0.00083

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "pf.position, cscart_product_features_descriptions.description",
      "temporary_table": {
        "table": {
          "table_name": "pf",
          "access_type": "ALL",
          "possible_keys": ["PRIMARY"],
          "rows": 29,
          "filtered": 100,
          "attached_condition": "pf.feature_type = 'G' and (pf.feature_id = '' or !<in_optimizer>(pf.feature_id,pf.feature_id in (subquery#2))) and pf.display_on_product = 'Y' and (pf.categories_path = '' or pf.categories_path is null or find_in_set(302,pf.categories_path) or find_in_set(303,pf.categories_path) or find_in_set(306,pf.categories_path) or find_in_set(324,pf.categories_path) or find_in_set(567,pf.categories_path) or find_in_set(575,pf.categories_path))"
        },
        "table": {
          "table_name": "cscart_product_features_descriptions",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["feature_id", "lang_code"],
          "ref": ["noframes_kz_new.pf.feature_id", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(cscart_product_features_descriptions.lang_code = 'ru')"
        },
        "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_kz_new.pf.feature_id", "const", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "cscart_ult_objects_sharing.share_object_id = pf.feature_id and cscart_ult_objects_sharing.share_object_type = 'product_features'",
          "using_index": true
        },
        "subqueries": [
          {
            "materialization": {
              "query_block": {
                "select_id": 2,
                "table": {
                  "table_name": "cscart_product_features",
                  "access_type": "ALL",
                  "rows": 29,
                  "filtered": 100
                }
              }
            }
          }
        ]
      }
    }
  }
}

Result

feature_id company_id feature_type parent_id display_on_product display_on_catalog display_on_header description internal_name lang_code prefix suffix categories_path full_description status comparison position purpose feature_style filter_style feature_code timestamp updated_timestamp
48 1 G 0 Y Y N Управление Управление ru A N 0 1607094522 0
14 1 G 0 Y Y N Электроника Электроника ru A N 0 1607094522 0
20 1 G 0 Y Y N Основные характеристики Основные характеристики ru A N 10 1607094522 0
24 1 G 0 Y Y N Технические характеристики Технические характеристики ru A N 20 1607094522 0
33 1 G 0 Y Y N Мультимедийные возможности Мультимедийные возможности ru A N 30 1607094522 0
30 1 G 0 Y Y N Интерфейсы Интерфейсы ru A N 40 1607094522 0
40 1 G 0 Y Y N Дополнительная информация Дополнительная информация ru A N 50 1607094522 0
37 1 G 0 Y Y N Габариты Габариты ru A N 100 1607094522 0