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 (9650, 9652, 9653) 
  AND q_product_descriptions.lang_code = 'en'

Query time 0.00030

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "7.21"
    },
    "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": 3,
      "rows_produced_per_join": 3,
      "filtered": "100.00",
      "index_condition": "((`portal`.`q_product_descriptions`.`product_id` in (9650,9652,9653)) and (`portal`.`q_product_descriptions`.`lang_code` = 'en'))",
      "cost_info": {
        "read_cost": "6.61",
        "eval_cost": "0.60",
        "prefix_cost": "7.21",
        "data_read_per_join": "11K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ]
    }
  }
}

Result

product_id short_description full_description
9650 <ul><li><span class="a-list-item">High precision molding allows for unparalleled tactile response</span></li> <li><span class="a-list-item">Made with durable, non-toxic engineering-grade thermoplastic urethane</span></li> <li><span class="a-list-item">Completely washable and reusable</span></li> <li><span class="a-list-item">Measures 0.1mm thin (one-fifth the thickness of silicone protectors)</span></li> <li><span class="a-list-item">High transparency film allows backlit keys to shine through</span></li> </ul>
9652 <ul class="a-unordered-list a-vertical a-spacing-none"><li><span class="a-list-item">Protect your keyboard and Touch Bar from crumbs and spills.</span></li> <li><span class="a-list-item">High precision molding is 100% form fitted to the Apple Keyboard keys allowing for unparalleled tactile response.</span></li> <li><span class="a-list-item">Made with durable, non-toxic engineering-grade thermoplastic urethane.</span></li> <li><span class="a-list-item">Measures 0.1 mm thin (one-fifth the thickness of silicone protectors).</span></li> <li><span class="a-list-item">High transparency film allows backlit keys to clearly shine through.</span></li> </ul>
9653 <ul class="a-unordered-list a-vertical a-spacing-none"><li><span class="a-list-item">Protect your keyboard and Touch Bar from crumbs and spills</span></li> <li><span class="a-list-item">High precision molding is 100 percent form fitted to the Apple Keyboard keys allowing for unparalleled tactile response</span></li> <li><span class="a-list-item">Made with durable non toxic engineering grade thermoplastic urethane</span></li> <li><span class="a-list-item">Measures 0 1 mm thin one fifth the thickness of silicone protectors</span></li> <li><span class="a-list-item">High transparency film allows backlit keys to clearly shine through</span></li> </ul>