SELECT 
  jmj_product_descriptions.product_id, 
  jmj_product_descriptions.short_description, 
  IF(
    jmj_product_descriptions.short_description = '' 
    OR jmj_product_descriptions.short_description IS NULL, 
    jmj_product_descriptions.full_description, 
    ''
  ) AS full_description 
FROM 
  jmj_product_descriptions 
WHERE 
  jmj_product_descriptions.product_id IN (
    1680, 1669, 1674, 1677, 1671, 1598, 1587, 
    1593, 1597, 1590
  ) 
  AND jmj_product_descriptions.lang_code = 'en'

Query time 0.01044

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "24.01"
    },
    "table": {
      "table_name": "jmj_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": 10,
      "rows_produced_per_join": 10,
      "filtered": "100.00",
      "index_condition": "((`jmj_test`.`jmj_product_descriptions`.`product_id` in (1680,1669,1674,1677,1671,1598,1587,1593,1597,1590)) and (`jmj_test`.`jmj_product_descriptions`.`lang_code` = 'en'))",
      "cost_info": {
        "read_cost": "22.01",
        "eval_cost": "2.00",
        "prefix_cost": "24.01",
        "data_read_per_join": "38K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ]
    }
  }
}

Result

product_id short_description full_description
1587
1590
1593
1597
1598
1669 <p></p><h1>Boys Woven Design Embroidered Sequinned Mandarin Collar Kurta</h1>
1671 <p></p><h1>Boys Embellished Woven Design Indowestern Sherwani</h1>
1674 <p></p><h1>Kids-Boys Embroidered Dupion Silk Kurta Sets</h1>
1677 <p></p><h1>Boys Woven Textured Mandarin Collar Nehru Jacket</h1>
1680 <p></p><h1>Boys Gold-Toned Embroidered Dhoti</h1>