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 (8, 9, 10) 
  AND tmall_product_descriptions.lang_code = 'en'

Query time 0.00776

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.00614682,
    "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": 3,
          "cost": 0.00614682,
          "filtered": 100,
          "index_condition": "tmall_product_descriptions.product_id in (8,9,10) and tmall_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description
8 <p> Although its attractive features, design, and passive 3D have merit, the picture quality issues of the Toshiba TL515U LED-based LCD TV lessen its appeal in the face of the stiff competition. </p>
9 <p>Although its attractive features, design, and passive 3D have merit, the picture quality issues of the Toshiba TL515U LED-based LCD TV lessen its appeal in the face of the stiff competition.</p>
10 <p>Although its attractive features, design, and passive 3D have merit, the picture quality issues of the Toshiba TL515U LED-based LCD TV lessen its appeal in the face of the stiff competition.</p>