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 (
    2899, 2900, 2901, 2902, 2903, 2904, 2905, 
    2906, 2907, 2908, 2909, 2910, 2911, 
    2912, 2913, 2914
  ) 
  AND q_product_descriptions.lang_code = 'en'

Query time 0.00048

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "38.41"
    },
    "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": 16,
      "rows_produced_per_join": 16,
      "filtered": "100.00",
      "index_condition": "((`portal`.`q_product_descriptions`.`product_id` in (2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914)) and (`portal`.`q_product_descriptions`.`lang_code` = 'en'))",
      "cost_info": {
        "read_cost": "35.21",
        "eval_cost": "3.20",
        "prefix_cost": "38.41",
        "data_read_per_join": "61K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ]
    }
  }
}

Result

product_id short_description full_description
2899
2900
2901
2902
2903
2904
2905
2906 <ul class="a-unordered-list a-vertical a-spacing-none"><li><span class="a-list-item">A woody floral musk fragrance for men</span></li><li><span class="a-list-item">Rich, powdery, sophisticated, captivating and long-lasting</span></li><li><span class="a-list-item">Combines the sophistication and depth of gold woman</span></li><li><span class="a-list-item">With rich and masculine woody base notes of patchouli and oak moss</span></li><li><span class="a-list-item">Reminiscent of the golden age of perfumery</span></li></ul>
2907
2908
2909
2910
2911
2912
2913
2914