SELECT 
  v.product_id, 
  v.feature_id, 
  v.value, 
  v.value_int, 
  v.variant_id, 
  f.feature_type, 
  fd.description, 
  fd.prefix, 
  fd.suffix, 
  vd.variant, 
  f.parent_id, 
  f.position, 
  gf.position as gposition 
FROM 
  cscart_product_features as f 
  LEFT JOIN cscart_product_features_values as v ON v.feature_id = f.feature_id 
  LEFT JOIN cscart_product_features_descriptions as fd ON fd.feature_id = v.feature_id 
  AND fd.lang_code = 'ar' 
  LEFT JOIN cscart_product_feature_variants fv ON fv.variant_id = v.variant_id 
  LEFT JOIN cscart_product_feature_variant_descriptions as vd ON vd.variant_id = fv.variant_id 
  AND vd.lang_code = 'ar' 
  LEFT JOIN cscart_product_features as gf ON gf.feature_id = f.parent_id 
  AND gf.feature_type = 'G' 
WHERE 
  f.status IN ('A') 
  AND v.product_id in (
    5250, 4752, 5919, 5817, 5837, 5253, 5814, 
    5251
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(250, f.categories_path) 
    OR FIND_IN_SET(328, f.categories_path) 
    OR FIND_IN_SET(342, f.categories_path) 
    OR FIND_IN_SET(362, f.categories_path) 
    OR FIND_IN_SET(402, f.categories_path) 
    OR FIND_IN_SET(405, f.categories_path) 
    OR FIND_IN_SET(410, f.categories_path)
  ) 
  AND IF(
    f.parent_id, 
    (
      SELECT 
        status 
      FROM 
        cscart_product_features as df 
      WHERE 
        df.feature_id = f.parent_id
    ), 
    'A'
  ) IN ('A') 
  AND (
    v.variant_id != 0 
    OR (
      f.feature_type != 'C' 
      AND v.value != ''
    ) 
    OR (f.feature_type = 'C') 
    OR v.value_int != ''
  ) 
  AND v.lang_code = 'ar' 
ORDER BY 
  fd.description, 
  fv.position

Query time 0.00370

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "94.91"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "v",
            "access_type": "range",
            "possible_keys": [
              "PRIMARY",
              "fl",
              "variant_id",
              "lang_code",
              "product_id",
              "fpl",
              "idx_product_feature_variant_id"
            ],
            "key": "product_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 153,
            "rows_produced_per_join": 49,
            "filtered": "32.51",
            "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (5250,4752,5919,5817,5837,5253,5814,5251))",
            "cost_info": {
              "read_cost": "65.89",
              "eval_cost": "4.97",
              "prefix_cost": "70.86",
              "data_read_per_join": "38K"
            },
            "used_columns": [
              "feature_id",
              "product_id",
              "variant_id",
              "value",
              "value_int",
              "lang_code"
            ],
            "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'ar') and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))"
          }
        },
        {
          "table": {
            "table_name": "f",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "status"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.feature_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 4,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "12.44",
              "eval_cost": "0.47",
              "prefix_cost": "88.27",
              "data_read_per_join": "2K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "categories_path",
              "parent_id",
              "display_on_catalog",
              "status",
              "position"
            ],
            "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`f`.`status` = 'A') and (`softwarepirmam_hewadelivard_cscart_4`.`f`.`display_on_catalog` = 'Y') and ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path` = '') or (0 <> find_in_set(166,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(250,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(328,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(342,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(362,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(402,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(405,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(410,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`))) and (if(`softwarepirmam_hewadelivard_cscart_4`.`f`.`parent_id`,(/* select#2 */ select `softwarepirmam_hewadelivard_cscart_4`.`df`.`status` from `softwarepirmam_hewadelivard_cscart_4`.`cscart_product_features` `df` where (`softwarepirmam_hewadelivard_cscart_4`.`df`.`feature_id` = `softwarepirmam_hewadelivard_cscart_4`.`f`.`parent_id`)),'A') = 'A') and ((`softwarepirmam_hewadelivard_cscart_4`.`v`.`variant_id` <> 0) or ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`feature_type` <> 'C') and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`value` <> '')) or (`softwarepirmam_hewadelivard_cscart_4`.`f`.`feature_type` = 'C') or (`softwarepirmam_hewadelivard_cscart_4`.`v`.`value_int` <> 0)))",
            "attached_subqueries": [
              {
                "dependent": true,
                "cacheable": false,
                "query_block": {
                  "select_id": 2,
                  "cost_info": {
                    "query_cost": "0.35"
                  },
                  "table": {
                    "table_name": "df",
                    "access_type": "eq_ref",
                    "possible_keys": [
                      "PRIMARY"
                    ],
                    "key": "PRIMARY",
                    "used_key_parts": [
                      "feature_id"
                    ],
                    "key_length": "3",
                    "ref": [
                      "softwarepirmam_hewadelivard_cscart_4.f.parent_id"
                    ],
                    "rows_examined_per_scan": 1,
                    "rows_produced_per_join": 1,
                    "filtered": "100.00",
                    "cost_info": {
                      "read_cost": "0.25",
                      "eval_cost": "0.10",
                      "prefix_cost": "0.35",
                      "data_read_per_join": "440"
                    },
                    "used_columns": [
                      "feature_id",
                      "status"
                    ]
                  }
                }
              }
            ]
          }
        },
        {
          "table": {
            "table_name": "fd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.feature_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 4,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.18",
              "eval_cost": "0.47",
              "prefix_cost": "89.93",
              "data_read_per_join": "10K"
            },
            "used_columns": [
              "feature_id",
              "description",
              "prefix",
              "suffix",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "fv",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.variant_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 4,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.18",
              "eval_cost": "0.47",
              "prefix_cost": "91.59",
              "data_read_per_join": "5K"
            },
            "used_columns": [
              "variant_id",
              "position"
            ]
          }
        },
        {
          "table": {
            "table_name": "vd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.fv.variant_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 4,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.18",
              "eval_cost": "0.47",
              "prefix_cost": "93.25",
              "data_read_per_join": "14K"
            },
            "used_columns": [
              "variant_id",
              "variant",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "gf",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.f.parent_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 4,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.18",
              "eval_cost": "0.47",
              "prefix_cost": "94.91",
              "data_read_per_join": "2K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "position"
            ],
            "attached_condition": "<if>(is_not_null_compl(gf), (`softwarepirmam_hewadelivard_cscart_4`.`gf`.`feature_type` = 'G'), true)"
          }
        }
      ]
    }
  }
}

Result

product_id feature_id value value_int variant_id feature_type description prefix suffix variant parent_id position gposition
4752 669 0.00 5966 S Maximum Device Rate Switching capacity 52 Gbps; forwarding rate 38.69 Mpps 0 280
5919 669 7615 S Maximum Device Rate 5.3 Gbps 0 280
5814 669 7564 S Maximum Device Rate ~35,532 Mbps (for 1518B frames) 0 280
5253 669 16.00 6834 S Maximum Device Rate 16 Gbps switching capacity 0 280
5817 669 7540 S Maximum Device Rate 128 Gbps switching capacity 0 280
5251 669 176.00 6820 S Maximum Device Rate 176 Gbps switching capacity 0 280
5250 669 6799 S Maximum Device Rate 3.5 Gbps IPS throughput 0 280
5837 669 0.00 7579 S Maximum Device Rate Switching capacity: 162 Gbps (non-blocking), Non-blocking throughput: 81 Gbps 0 280
5814 668 7563 S Maximum User Capacity the device is intended for high performance routing/switching, so “user capacity” depends heavily on usage, traffic, and features used 0 270
5253 668 6823 S Maximum User Capacity Supports over 500 concurrent clients 0 270
5817 668 6823 S Maximum User Capacity Supports over 500 concurrent clients 0 270
5251 668 6798 S Maximum User Capacity Supports over 1,000 concurrent clients 0 270
5837 668 0.00 7578 S Maximum User Capacity High-bandwidth connectivity for up to 8 devices 0 270
5250 668 6798 S Maximum User Capacity Supports over 1,000 concurrent clients 0 270
5919 668 7614 S Maximum User Capacity Approx. 50-100 users 0 270
5251 663 6795 S Mounting Options Rackmount (1U) 0 220
5253 663 0.00 6832 S Mounting Options Desktop, Wall, Magnetic 0 220
5919 663 7602 S Mounting Options Desktop 0 220
5837 685 7569 S Mounting Options Desktop / Wall 0 0
5250 685 6800 S Mounting Options Rackmount (1U) 0 0
5817 685 6800 S Mounting Options Rackmount (1U) 0 0
5814 685 7560 S Mounting Options Rackmount (1U), standard 19-inch rack chassis 0 0
4752 685 5963 S Mounting Options Rack-mountable (1U) 0 0
5837 665 1.00 7576 S Network Ports 1 × 10/100/1000 RJ45 (management port), 8 × 10G SFP+ 0 240
5817 665 12.00 7565 S Network Ports 12 × Gigabit Ethernet (10/100/1000), 4 × 10G SFP+ 0 240
5919 665 7612 S Network Ports 1 × Combo (Gigabit/SFP), 5 × SFP 0 240
5814 665 7561 S Network Ports 16 × 10/100/1000 RJ45 Ethernet ports, 2 × 10G SFP+ cages 0 240
4752 665 24.00 5964 S Network Ports 24 × 10/100/1000BASE-T (RJ45) ports, 2 × 1 Gbps SFP ports, 1 × Console (RJ45 serial) port 0 240
5253 665 8.00 6833 S Network Ports 8 × 10/100/1000 RJ45 (7 × PoE+, 1 × PoE++), 2 × 10G SFP+ 0 240
5250 665 24.00 6801 S Network Ports 24 × 1G RJ45 (16 × PoE+, 8 × PoE++), 2 × 10G SFP+ 0 240
5251 665 48.00 6818 S Network Ports 48 × 10/100/1000 RJ45 (40 × PoE+, 8 × PoE++), 4 × 10G SFP+ 0 240
5814 666 7562 S Power Support 2 internal AC power supply inputs, range: 100–240 V AC, Maximum power consumption: ~48 W 0 250
4752 666 0.00 5965 S Power Support Internal 250 W AC/DC power supply, PoE+ (802.3at/af up to 34.2 W per port), 24V passive PoE (up to 17 W per port) 0 250
5919 666 7613 S Power Support Passive PoE (11–30V DC) 0 250
5253 666 6819 S Power Support AC Input: 100–240V, 50/60Hz; DC Input: 44–57V 0 250
5817 666 0.00 7566 S Power Support Dual redundant AC power supplies (100–240V) Typical power consumption: ~60W 0 250
5250 666 6797 S Power Support AC Input: 100–240V, 50/60Hz; DC Input: 52V 0 250
5251 666 0.00 6819 S Power Support AC Input: 100–240V, 50/60Hz; DC Input: 44–57V 0 250
5837 666 0.00 7577 S Power Support PoE-IN (802.3af/at) and DC jack input (12–57 V), Max power consumption: ~ 23 W (17 W without attachments) 0 250
5814 656 1559 S لون White 0 160
5919 656 1559 S لون White 0 160
5837 656 1559 S لون White 0 160
5817 656 1559 S لون White 0 160
5250 657 4743 E ماركة Ubiquiti Networks 0 0
5837 657 7483 E ماركة MIKROTIK 0 0
5817 657 7483 E ماركة MIKROTIK 0 0
5251 657 4743 E ماركة Ubiquiti Networks 0 0
4752 657 4743 E ماركة Ubiquiti Networks 0 0
5253 657 4743 E ماركة Ubiquiti Networks 0 0
5814 657 7483 E ماركة MIKROTIK 0 0
5919 657 7483 E ماركة MIKROTIK 0 0