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 (33, 32) 
  AND tmall_product_descriptions.lang_code = 'en'

Query time 0.00768

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.004394164,
    "nested_loop": [
      {
        "table": {
          "table_name": "tmall_product_descriptions",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "product_id"],
          "key": "product_id",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "loops": 1,
          "rows": 2,
          "cost": 0.004394164,
          "filtered": 100,
          "index_condition": "tmall_product_descriptions.product_id in (33,32)",
          "attached_condition": "tmall_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description
32 <p>Garmin Guidance 3.0 allows you to quickly look up addresses and services and be guided to your destination with voice-prompted, turn-by-turn directions that speak street names. It comes preloaded with maps that feature 3-D landmarks and terrain for North America. It also comes preloaded with more than 8 million points of interest and offers the ability to add your own.</p>
33 <p>Whether you&rsquo;re driving through an unfamiliar city or on your daily commute, n&uuml;vi 2455LT makes your trip easier than ever before. It includes FREE lifetime traffic updates, advanced lane guidance and more.</p>