SELECT 
  product_descriptions.product_id, 
  product_descriptions.short_description, 
  IF(
    product_descriptions.short_description = '' 
    OR product_descriptions.short_description IS NULL, 
    product_descriptions.full_description, 
    ''
  ) AS full_description 
FROM 
  product_descriptions 
WHERE 
  product_descriptions.product_id IN (
    386174, 398614, 432935, 451418, 452180, 
    484418, 310940, 312252, 313575, 313580, 
    314134, 314899
  ) 
  AND product_descriptions.lang_code = 'en'

Query time 0.00096

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "9.99"
    },
    "table": {
      "table_name": "product_descriptions",
      "access_type": "range",
      "possible_keys": [
        "PRIMARY",
        "product_id"
      ],
      "key": "PRIMARY",
      "used_key_parts": [
        "product_id",
        "lang_code"
      ],
      "key_length": "11",
      "rows_examined_per_scan": 12,
      "rows_produced_per_join": 12,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "8.79",
        "eval_cost": "1.20",
        "prefix_cost": "9.99",
        "data_read_per_join": "61K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ],
      "attached_condition": "((`goimagine`.`product_descriptions`.`product_id` in (386174,398614,432935,451418,452180,484418,310940,312252,313575,313580,314134,314899)) and (`goimagine`.`product_descriptions`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id short_description full_description
310940 <p>Cobalt blue Capelet</p>
312252 <p>Lotus Mandala Vest in Orange</p>
313575 <p>Alpaca scarf</p>
313580 <p>Cobalt blue Capelet</p>
314134 <p>Lotus Mandala Vest in Purple</p>
314899 <p>&nbsp;Balaclava will fit up to a US size 24".<br></p> <p>. Easily slips over your head.<br>. Gift for him, her or yourself.<br>. Adult size.<br>. 100% merino wool.</p>
386174 <p>Lotus Mandala Vest in Purple</p>
398614 <p>Lotus Mandala duster.</p>
432935 <p>Lotus Mandala Vest in Purple</p>
451418 <p>Lotus Mandala duster.</p>
452180 <p>Alpaca scarf</p>
484418 <p>Lotus Mandala duster.</p>