SELECT 
  cscart_product_descriptions.product_id, 
  cscart_product_descriptions.short_description, 
  IF(
    cscart_product_descriptions.short_description = '' 
    OR cscart_product_descriptions.short_description IS NULL, 
    cscart_product_descriptions.full_description, 
    ''
  ) AS full_description 
FROM 
  cscart_product_descriptions 
WHERE 
  cscart_product_descriptions.product_id IN (15360, 15361, 15362, 15363) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00015

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_product_descriptions",
      "access_type": "range",
      "possible_keys": ["PRIMARY", "product_id"],
      "key": "product_id",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "rows": 4,
      "filtered": 100,
      "index_condition": "cscart_product_descriptions.product_id in (15360,15361,15362,15363)",
      "attached_condition": "cscart_product_descriptions.lang_code = 'en'"
    }
  }
}

Result

product_id short_description full_description
15360 <p>A glasses chain made with sustainably sourced ostrich eggshells and patricia wood beads. Mostly white eggshell beads with some black and brown beads. Handmade in Botswana. Size: 69cm/27inch</p>
15361 <p>Pouches made from fabric and sustainably sourced ostrich eggshells. Lined. Handmade in Botswana. 8x4.5 in/ 21x11 cm<br /></p>
15362 <p>Keychain made with sustainably sourced leather and glass beads made from recycled glass bottles. Includes multi-coloured beads (combination of green, blue and white) with grey leather accent. Handmade in Botswana.Size:12cm/5inch</p>
15363 <p>Keychain handmade by women in Northwest Botswana from naturally dyed mokolowane palm fronds with sustainably sourced leather and ostrich eggshell detailing. Handmade in Botswana. Dimensions: 22 cm/8 in</p>