SELECT 
  cscart_product_filters.feature_id, 
  cscart_product_filters.filter_id, 
  cscart_product_filters.field_type, 
  cscart_product_filters.round_to, 
  cscart_product_filters.abt__ut2_display_desktop as display, 
  cscart_product_filters.display_count, 
  cscart_product_filter_descriptions.filter, 
  cscart_product_features.feature_type, 
  cscart_product_features.filter_style, 
  cscart_product_features_descriptions.prefix, 
  cscart_product_features_descriptions.suffix, 
  cscart_product_features_descriptions.yml2_variants_unit 
FROM 
  cscart_product_filters 
  LEFT JOIN cscart_product_filter_descriptions ON cscart_product_filter_descriptions.filter_id = cscart_product_filters.filter_id 
  AND cscart_product_filter_descriptions.lang_code = 'ru' 
  LEFT JOIN cscart_product_features ON cscart_product_features.feature_id = cscart_product_filters.feature_id 
  LEFT JOIN cscart_product_features_descriptions ON cscart_product_features_descriptions.feature_id = cscart_product_filters.feature_id 
  AND cscart_product_features_descriptions.lang_code = 'ru' 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = cscart_product_filters.filter_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_filters'
  ) 
WHERE 
  cscart_product_filters.status = 'A' 
  AND cscart_product_filters.feature_id NOT IN (1) 
ORDER BY 
  cscart_product_filters.position, 
  cscart_product_filter_descriptions.filter

Query time 0.00273

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "18.10"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_product_filters",
            "access_type": "ALL",
            "possible_keys": [
              "PRIMARY",
              "feature_id"
            ],
            "rows_examined_per_scan": 72,
            "rows_produced_per_join": 7,
            "filtered": "10.00",
            "cost_info": {
              "read_cost": "7.30",
              "eval_cost": "0.72",
              "prefix_cost": "8.02",
              "data_read_per_join": "518"
            },
            "used_columns": [
              "filter_id",
              "feature_id",
              "position",
              "field_type",
              "status",
              "round_to",
              "display_count",
              "abt__ut2_display_desktop"
            ],
            "attached_condition": "((`unicomps`.`cscart_product_filters`.`status` = 'A') and (`unicomps`.`cscart_product_filters`.`feature_id` <> 1))"
          }
        },
        {
          "table": {
            "table_name": "cscart_product_filter_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "filter_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "unicomps.cscart_product_filters.filter_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 7,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.80",
              "eval_cost": "0.72",
              "prefix_cost": "10.54",
              "data_read_per_join": "5K"
            },
            "used_columns": [
              "filter_id",
              "lang_code",
              "filter"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_product_features",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "unicomps.cscart_product_filters.feature_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 7,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.80",
              "eval_cost": "0.72",
              "prefix_cost": "13.06",
              "data_read_per_join": "8K"
            },
            "used_columns": [
              "feature_id",
              "filter_style",
              "feature_type"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_product_features_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "unicomps.cscart_product_filters.feature_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 7,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.80",
              "eval_cost": "0.72",
              "prefix_cost": "15.58",
              "data_read_per_join": "17K"
            },
            "used_columns": [
              "feature_id",
              "prefix",
              "suffix",
              "lang_code",
              "yml2_variants_unit"
            ]
          }
        },
        {
          "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": [
              "unicomps.cscart_product_filters.filter_id",
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 7,
            "filtered": "100.00",
            "using_index": true,
            "cost_info": {
              "read_cost": "1.80",
              "eval_cost": "0.72",
              "prefix_cost": "18.10",
              "data_read_per_join": "1K"
            },
            "used_columns": [
              "share_company_id",
              "share_object_id",
              "share_object_type"
            ],
            "attached_condition": "(`unicomps`.`cscart_ult_objects_sharing`.`share_object_id` = `unicomps`.`cscart_product_filters`.`filter_id`)"
          }
        }
      ]
    }
  }
}

Result

feature_id filter_id field_type round_to display display_count filter feature_type filter_style prefix suffix yml2_variants_unit
127 266 0.01 N 5 Тип товара S checkbox
0 229 P 0.01 Y 10 Цена (₽)
2 129 1 Y 10 Код вендора T
361 311 0.01 N 5 Диагональ N slider
156 265 0.01 N 5 Мощность S checkbox
177 283 0.01 N 5 Назначение S checkbox
197 301 0.01 N 5 Назначение для процессора S checkbox
155 264 0.01 N 5 Графический процессор S checkbox
196 300 0.01 N 10 Рассеиваемая мощность TDP (Вт) N slider
158 268 0.01 N 5 Форм-фактор S checkbox
360 310 0.01 N 5 Отстегивающиеся кабели S checkbox
157 267 0.01 N 5 Сертификат 80 PLUS S checkbox
117 232 0.01 N 5 Сокет S checkbox
195 299 0.01 N 5 Тип конструкции S checkbox
193 297 0.01 N 5 Разъем подключения вентилятора S checkbox
359 309 0.01 N 5 Сертификат Cybenetics S checkbox
178 284 0.01 N 5 Количество вентиляторов S checkbox
118 233 0.01 N 5 Количество ядер S checkbox
194 298 0.01 N 5 Наличие тепловых трубок S checkbox
154 263 0.01 N 5 Объем памяти S checkbox
176 282 0.01 N 5 Размер радиатора S checkbox
191 295 0.01 N 5 Цвет подсветки S checkbox
186 290 0.01 N 5 Тип памяти S checkbox
192 296 0.01 N 5 Наличие экрана S checkbox
120 235 0.01 N 5 Семейство S checkbox
133 243 0.01 N 5 Поколение S checkbox
179 285 0.01 N 5 Размер вентилятора S checkbox
187 291 0.01 N 5 Шина памяти S checkbox
185 289 0.01 N 5 Количество вентиляторов S checkbox
189 293 0.01 N 5 Модель S checkbox
168 278 0.01 N 10 Цвет S color
188 292 0.01 N 5 Низкопрофильная Low Profile S checkbox
123 238 0.01 N 5 Ядро S checkbox
166 276 0.01 N 5 Типоразмер S checkbox
125 239 0.01 N 5 Частота базовая (МГц) N slider
167 277 0.01 N 5 Наличие блока питания S checkbox
126 240 0.01 N 5 Частота в турбо (МГц) N slider
171 280 0.01 N 5 Кэш L2 S checkbox
172 281 0.01 N 5 Кэш L3 S checkbox
162 272 0.01 N 5 Объем S checkbox
122 237 0.01 N 5 Интегрированная графика S checkbox
134 244 0.01 N 5 Встроеное видеоядро S checkbox
163 273 0.01 N 5 Форм-фактор S checkbox
130 242 0.01 N 5 Технологический процесс S checkbox
164 274 0.01 N 5 Скорость шпинделя S checkbox
129 241 0.01 N 5 Тепловыделение TDP (Вт) N slider
174 287 0.01 N 5 Максимальная температура S checkbox
165 275 0.01 N 5 Кэш S checkbox
121 236 0.01 N 5 Тип упаковки S checkbox
181 288 0.01 N 5 Год релиза S checkbox
159 269 0.01 N 5 Объем S checkbox
160 270 0.01 N 5 Форм-фактор S checkbox
170 279 0.01 N 5 Интерфейс S checkbox
161 271 0.01 N 5 Размер M.2 S checkbox
148 257 0.01 N 5 Форм-фактор S checkbox
149 258 0.01 N 5 Тип памяти S checkbox
135 245 0.01 N 5 Чипсет S checkbox
138 247 0.01 N 5 Форм-фактор S checkbox
137 246 0.01 N 5 Тип памяти S checkbox
150 259 0.01 N 5 Объем S checkbox
151 260 0.01 N 5 Количество модулей в комплекте S checkbox
152 261 0.01 N 5 Тактовая частота (МГц) S checkbox
139 248 0.01 N 5 Количество слотов памяти S checkbox
141 250 0.01 N 5 Количество слотов M.2 S checkbox
140 249 0.01 N 5 Версия PCI-Express S checkbox
144 253 0.01 N 5 Разъем HDMI S checkbox
145 254 0.01 N 5 Разъем DisplayPort S checkbox
146 255 0.01 N 5 Разъем VGA S checkbox
147 256 0.01 N 5 Разъем DVI S checkbox
180 286 0.01 N 5 Разъемы на обратной стороне S checkbox
142 251 0.01 N 5 Wi-Fi S checkbox