SELECT 
  q_product_descriptions.product_id, 
  q_product_descriptions.short_description, 
  IF(
    q_product_descriptions.short_description = '', 
    q_product_descriptions.full_description, 
    ''
  ) AS full_description 
FROM 
  q_product_descriptions 
WHERE 
  q_product_descriptions.product_id IN (3799, 3800, 3801, 3802, 3803) 
  AND q_product_descriptions.lang_code = 'en'

Query time 0.00082

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "12.01"
    },
    "table": {
      "table_name": "q_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": 5,
      "rows_produced_per_join": 5,
      "filtered": "100.00",
      "index_condition": "((`portal`.`q_product_descriptions`.`product_id` in (3799,3800,3801,3802,3803)) and (`portal`.`q_product_descriptions`.`lang_code` = 'en'))",
      "cost_info": {
        "read_cost": "11.01",
        "eval_cost": "1.00",
        "prefix_cost": "12.01",
        "data_read_per_join": "19K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ]
    }
  }
}

Result

product_id short_description full_description
3799 <ul class="a-unordered-list a-vertical a-spacing-none"><li><span class="a-list-item">Utilized with non-slip textured surface provides safe and comfortable grip, these special features are perfect for handling dishes</span></li><li><span class="a-list-item">100% natural high-quality rubber</span></li><li><span class="a-list-item">Flexible, embossed nonslip grip</span></li><li><span class="a-list-item">Antimicrobial</span></li><li><span class="a-list-item">Length -39 CM Size: Large</span></li></ul>
3800 <ul><li>Soft & natural</li><li>Great for dish washing, car washing, sink cleaning and other chores</li><li>Antimicrobial</li><li>Flexible</li><li>Embossed nonslip grip</li></ul>
3801 <ul><li>soft & natural </li><li>great for dish washing, car washing, sink cleaning and other chores </li><li> antimicrobial flexible </li><li> embossed nonslip grip</li></ul>
3802 <ul><li>soft & natural </li><li> great for dish washing, car washing, sink cleaning and other chores </li><li> antimicrobial / flexible </li><li>embossed nonslip grip</li></ul>
3803 <ul><li>soft & natural / great for dish washing</li><li>car washing, sink cleaning and other chores </li><li>antimicrobial / flexible </li><li>embossed nonslip grip</li></ul>