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 (50, 51, 49, 48) 
  AND tmall_product_descriptions.lang_code = 'en'

Query time 0.00842

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 (50,51,49,48) and tmall_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description
48 <p>This is marine audio at its best. This 8" two-way speaker is built specifically for marine use, with heavy-duty construction that strenuously resists water, corrosion, heat&mdash;and boring music. Pioneer research showed that more bass is required for boating applications, and this 8" size delivers.</p>
49 <p>Whether you're out on the water or at the dock, this 6-1/2&rdquo; two-way speaker adds a new dimension to your boat. It's built specifically for marine use, with heavy-duty construction inside and out that strenuously resists water, corrosion, heat, and sunlight.</p>
50 <p>Absolute fidelity to musical sources takes form from speakers that reproduce the ambience in which sounds originate. Stage size, musicians&rsquo; movement, aural reflection and other distinctive details all bring these sounds to life. Pioneer D-Series speakers are available in 2-way component packages or 2-way coaxial designs in multiple sizes that fit most vehicles.</p>
51 <p>Absolute fidelity to musical sources takes form from speakers that reproduce the ambience in which sounds originate. Stage size, musicians&rsquo; movement, aural reflection and other distinctive details all bring these sounds to life. Pioneer D-Series speakers are available in 2-way component packages or 2-way coaxial designs in multiple sizes that fit most vehicles.</p>