SELECT 
  cscart_product_feature_variant_descriptions.variant, 
  cscart_product_feature_variants.variant_id, 
  cscart_product_feature_variants.feature_id, 
  cscart_product_features_values.variant_id as selected, 
  cscart_product_features.feature_type, 
  cscart_seo_names.name as seo_name, 
  cscart_seo_names.path as seo_path 
FROM 
  cscart_product_feature_variants 
  LEFT JOIN cscart_product_feature_variant_descriptions ON cscart_product_feature_variant_descriptions.variant_id = cscart_product_feature_variants.variant_id 
  AND cscart_product_feature_variant_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_product_features_values ON cscart_product_features_values.variant_id = cscart_product_feature_variants.variant_id 
  AND cscart_product_features_values.lang_code = 'en' 
  AND cscart_product_features_values.product_id = 223 
  AND cscart_product_features_values.feature_id = cscart_product_feature_variants.feature_id 
  LEFT JOIN cscart_product_features ON cscart_product_features.feature_id = cscart_product_feature_variants.feature_id 
  LEFT JOIN cscart_seo_names ON cscart_seo_names.object_id = cscart_product_feature_variants.variant_id 
  AND cscart_seo_names.type = 'e' 
  AND cscart_seo_names.dispatch = '' 
  AND cscart_seo_names.lang_code = 'en' 
WHERE 
  1 
  AND cscart_product_feature_variants.feature_id IN (18, 15, 16, 17) 
GROUP BY 
  cscart_product_feature_variants.variant_id 
ORDER BY 
  cscart_product_feature_variants.position, 
  cscart_product_feature_variant_descriptions.variant

Query time 0.00207

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "853.26"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_product_feature_variants",
              "access_type": "range",
              "possible_keys": [
                "PRIMARY",
                "feature_id"
              ],
              "key": "feature_id",
              "used_key_parts": [
                "feature_id"
              ],
              "key_length": "3",
              "rows_examined_per_scan": 86,
              "rows_produced_per_join": 86,
              "filtered": "100.00",
              "index_condition": "(`danishecarter_31jan`.`cscart_product_feature_variants`.`feature_id` in (18,15,16,17))",
              "cost_info": {
                "read_cost": "107.21",
                "eval_cost": "17.20",
                "prefix_cost": "124.41",
                "data_read_per_join": "227K"
              },
              "used_columns": [
                "variant_id",
                "feature_id",
                "position"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_product_feature_variant_descriptions",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "variant_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "danishecarter_31jan.cscart_product_feature_variants.variant_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 86,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "86.00",
                "eval_cost": "17.20",
                "prefix_cost": "227.61",
                "data_read_per_join": "260K"
              },
              "used_columns": [
                "variant_id",
                "variant",
                "lang_code"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_product_features_values",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "fl",
                "variant_id",
                "lang_code",
                "product_id",
                "fpl",
                "idx_product_feature_variant_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "product_id",
                "variant_id",
                "lang_code"
              ],
              "key_length": "15",
              "ref": [
                "danishecarter_31jan.cscart_product_feature_variants.feature_id",
                "const",
                "danishecarter_31jan.cscart_product_feature_variants.variant_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 86,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "86.00",
                "eval_cost": "17.20",
                "prefix_cost": "330.81",
                "data_read_per_join": "66K"
              },
              "used_columns": [
                "feature_id",
                "product_id",
                "variant_id",
                "lang_code"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_product_features",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id"
              ],
              "key_length": "3",
              "ref": [
                "danishecarter_31jan.cscart_product_feature_variants.feature_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 86,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "86.00",
                "eval_cost": "17.20",
                "prefix_cost": "434.01",
                "data_read_per_join": "101K"
              },
              "used_columns": [
                "feature_id",
                "feature_type"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_seo_names",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "dispatch"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "object_id",
                "type",
                "dispatch",
                "lang_code"
              ],
              "key_length": "206",
              "ref": [
                "danishecarter_31jan.cscart_product_feature_variants.variant_id",
                "const",
                "const",
                "const"
              ],
              "rows_examined_per_scan": 4,
              "rows_produced_per_join": 344,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "350.45",
                "eval_cost": "68.80",
                "prefix_cost": "853.26",
                "data_read_per_join": "583K"
              },
              "used_columns": [
                "name",
                "object_id",
                "type",
                "dispatch",
                "path",
                "lang_code"
              ]
            }
          }
        ]
      }
    }
  }
}

Result

variant variant_id feature_id selected feature_type seo_name seo_path
13.3" 63 16 S
14.0" 61 16 S
15.6" 59 16 S
16GB 45 17 S
1TB 47 17 S
2.4" 77 16 S
23" 51 16 S
256GB 64 17 S
256MB 79 17 S
27" 41 16 S
2GB 81 17 S
3.1" 83 16 S
3.2" 80 16 S
3.5" 65 16 S
3.7" 71 16 S
320GB 50 17 S
32GB 54 17 54 S
4.0" 67 16 S
4.3" 68 16 S
4.5" 74 16 S
4.7" 70 16 S
4GB 75 17 S
500GB 48 17 S
512MB 82 17 S
640GB 60 17 S
7.0" 56 16 S
750GB 62 17 S
8.9" 53 16 53 S
8GB 72 17 S
9.7" 44 16 S
Abbey Road Studios 116 18 E abbey-road-studios
Acer 92 18 E acer
Adidas 86 18 E adidas
Aiko 129 18 E aiko
Android 2.1 84 15 S
Android 2.2, Froyo 55 15 S
Android 2.3, Gingerbread 66 15 S
Android 3.1, Honeycomb 52 15 52 S
Android 3.2, Honeycomb 58 15 S
Android 4.0, Ice Cream Sandwich 73 15 S
Apple 91 18 E apple
Arc System Works 120 18 E arc-system-works
ASUS 88 18 E asus
Camelback 131 18 E camelback
Capcom 124 18 E capcom
Casio 125 18 E casio
Cleveland 130 18 E cleveland
Cobra 104 18 E cobra-en
Concord Records 96 18 E concord-records
Creative 111 18 E creative
D-Link 95 18 E d-link
Electronic Arts (EA) 190 18 E electronic-arts-ea
Entertainment One Ltd 113 18 E entertainment-one-ltd
Garmin 102 18 E garmin
GoPro 135 18 E gopro
Hewlett-Packard 93 18 E hewlett-packard
HTC 108 18 E htc-en
Intel 99 18 E intel
Kenwood 103 18 E kenwood
Koss 115 18 E koss
LG 94 18 E lg
Microsoft 136 18 E microsoft-en
Montblanc 133 18 E montblanc
Motorola 109 18 E motorola-en
Namco 122 18 E namco
Namco Bandai Games 123 18 E namco-bandai-games
Nike 87 18 E nike
Nikon 117 18 E nikon
Nintendo 177 18 E nintendo
Nokia 110 18 E nokia-en
Nokia OS 76 15 S
Panasonic 98 18 E panasonic
Pioneer 100 18 E pioneer
Quartet Manufacturing 126 18 E quartet-manufacturing
Razer 192 18 E razer
Rhino 107 18 E rhino
Roadrunner Records 105 18 E roadrunner-records
Samsung 89 18 89 E samsung-en
SanDisk 121 18 E sandisk
Sony 114 18 E sony
Sucker Punch Productions 191 18 E sucker-punch-productions
Swingline 127 18 E swingline
Symbian OS 78 15 S
Tissot 134 18 E tissot
TomTom 101 18 E tomtom
Toshiba 106 18 E toshiba
TP-Link 97 18 E tp-link
Universal Music Group 90 18 E universal-music-group
Warner Bros. 118 18 E warner-bros
Warner Home Video 119 18 E warner-home-video
Wilson Jones 128 18 E wilson-jones
Wilson Staff 132 18 E wilson-staff
Windows 7 Home Basic 49 15 S
Windows 7 Home Premium 46 15 S
Windows Phone 7.5, Mango 69 15 S
Yamaha 112 18 E yamaha-en
iOS 5 39 15 S