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 (
    81741, 81739, 81737, 81704, 81702, 81672, 
    81657, 81655, 81647, 81636, 81634, 
    81627, 81625, 81624, 81611
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00084

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "21.03"
    },
    "table": {
      "table_name": "cscart_product_descriptions",
      "access_type": "range",
      "possible_keys": [
        "PRIMARY",
        "product_id"
      ],
      "key": "PRIMARY",
      "used_key_parts": [
        "product_id",
        "lang_code"
      ],
      "key_length": "9",
      "rows_examined_per_scan": 15,
      "rows_produced_per_join": 15,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "18.04",
        "eval_cost": "3.00",
        "prefix_cost": "21.04",
        "data_read_per_join": "102K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ],
      "attached_condition": "((`webmarco`.`cscart_product_descriptions`.`product_id` in (81741,81739,81737,81704,81702,81672,81657,81655,81647,81636,81634,81627,81625,81624,81611)) and (`webmarco`.`cscart_product_descriptions`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id short_description full_description
81611 <h6>Short Beaded Dress With Tulle.</h6> <p></p>
81624 <h6>Soft tulle and lace fabric, light internal padding. </h6> <h6>One size.</h6>
81625 <h6>Soft tulle and lace fabric, light internal padding. </h6> <h6>One size.</h6>
81627 <h6>Soft tulle and lace fabric, light internal padding. </h6> <h6>One size.</h6>
81634 <h5>Long Dress Bright Fabric.</h5>
81636 <h5>Long Dress Bright Fabric.</h5>
81647 <h6>Long Dress Wide Glitter Skirt.</h6>
81655 <h6>Wonderful Long Veiled Tulle Dress</h6>
81657 <h6>Wonderful Long Veiled Tulle Dress.</h6>
81672 <p>Soft Warm Hooded Jacket.</p>
81702 <h6>Long Tulle Dress</h6>
81704 <h6>Long Tulle Dress.</h6>
81737 <h5>Long Tulle Dress.</h5>
81739 <h5>Long Tulle Dress.</h5>
81741 <p><span style="color:rgb(34,34,34);font-weight:700;">Long Tulle And Glitter Dress.</span></p>