SELECT 
  tmall_product_descriptions.product_id, 
  tmall_product_descriptions.short_description, 
  IF(
    tmall_product_descriptions.short_description = '' 
    OR tmall_product_descriptions.short_description IS NULL, 
    tmall_product_descriptions.full_description, 
    ''
  ) AS full_description 
FROM 
  tmall_product_descriptions 
WHERE 
  tmall_product_descriptions.product_id IN (107, 109, 91, 92) 
  AND tmall_product_descriptions.lang_code = 'en'

Query time 0.00810

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.007875846,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_product_descriptions",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "product_id"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["product_id", "lang_code"],
          "loops": 1,
          "rows": 4,
          "cost": 0.007875846,
          "filtered": 100,
          "index_condition": "tmall_product_descriptions.product_id in (107,109,91,92) and tmall_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description
91 <p>43 mm watch with stainless steel case, Montblanc Calibre MB R200, monopusher chronograph with automatic winding, anthracite-coloured dial with applique hour circle, date display, second time zone with day/night display, chronograph counters with rotating discs.</p>
92 <p>42 mm stainless steel watch with black dial, red-gold plated hands and numerals, automatic movement, date display, black alligator-skin strap</p>
107 <p>Platinum-plated money clip with black onyx inlay</p>
109 <p>Stainless steel key ring with brown calf leather</p>