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 (
    246588, 246606, 246589, 246591, 246565
  ) 
  AND product_descriptions.lang_code = 'en'

Query time 0.00073

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "4.18"
    },
    "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": 5,
      "rows_produced_per_join": 5,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "3.68",
        "eval_cost": "0.50",
        "prefix_cost": "4.18",
        "data_read_per_join": "25K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ],
      "attached_condition": "((`goimagine`.`product_descriptions`.`product_id` in (246588,246606,246589,246591,246565)) and (`goimagine`.`product_descriptions`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id short_description full_description
246565 <p>Get the whole family involved when you count down the day to Christmas was a fun, moveable Nativity Advent Calendar. The moveable pieces make interaction for kids, or adults, excited for the arrival of Christ and Christmas.&nbsp;</p>
246588 <p>Get the whole family involved when you count down the day to Christmas was a fun, moveable Nativity Advent Calendar. The moveable pieces make interaction for kids, or adults, excited for the arrival of Christ and Christmas.&nbsp;</p>
246589 <p>Get the whole family involved when you count down the day to Christmas was a fun, moveable Nativity Advent Calendar. The moveable pieces make interaction for kids, or adults, excited for the arrival of Christ and Christmas.&nbsp;</p>
246591 <p>Get the whole family involved when you count down the day to Christmas was a fun, moveable Nativity Advent Calendar. The moveable pieces make interaction for kids, or adults, excited for the arrival of Christ and Christmas.&nbsp;</p>
246606 <p>Get the whole family involved when you count down the day to Christmas was a fun, moveable Nativity Advent Calendar. The moveable pieces make interaction for kids, or adults, excited for the arrival of Christ and Christmas.&nbsp;</p>