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 (
    487063, 489135, 491782, 335256, 345253, 
    350534, 369017, 370892, 382773, 388052, 
    390133, 419174
  ) 
  AND product_descriptions.lang_code = 'en'

Query time 0.00578

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "9.92"
    },
    "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.72",
        "eval_cost": "1.20",
        "prefix_cost": "9.92",
        "data_read_per_join": "61K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ],
      "attached_condition": "((`goimagine`.`product_descriptions`.`product_id` in (487063,489135,491782,335256,345253,350534,369017,370892,382773,388052,390133,419174)) and (`goimagine`.`product_descriptions`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id short_description full_description
335256 <p>Pom pom hats</p>
345253 <p>Lotus Mandala duster.</p>
350534 <p>Lotus Mandala Vest in Purple</p>
369017 <p>Colorful Beanie</p>
370892 <p>Lotus Mandala Vest in Orange</p>
382773 <p>Lotus Mandala duster.</p>
388052 <p>Mohair and silk shawl</p>
390133 <p>Lotus Mandala Vest in Orange</p>
419174 <p>Lotus Mandala duster.</p>
487063 <p>Luxurious crochet hood</p>
489135 <p>Full body scarf</p>
491782 <p>Colorful Beanie</p>