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 (
    1059, 1060, 1032, 1033, 1034, 1035, 1036, 
    1037, 1038, 1039, 1040, 1041
  ) 
  AND jmj_product_descriptions.lang_code = 'en'

Query time 0.00078

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "28.81"
    },
    "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": 12,
      "rows_produced_per_join": 12,
      "filtered": "100.00",
      "index_condition": "((`jmj_test`.`jmj_product_descriptions`.`product_id` in (1059,1060,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041)) and (`jmj_test`.`jmj_product_descriptions`.`lang_code` = 'en'))",
      "cost_info": {
        "read_cost": "26.41",
        "eval_cost": "2.40",
        "prefix_cost": "28.81",
        "data_read_per_join": "45K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ]
    }
  }
}

Result

product_id short_description full_description
1032 <p>Ready to wear saree with stitched blouse </p>
1033 <p>Ready to wear saree with stitched blouse</p>
1034 <p>Ready to wear saree / drep saree with stitched blouse</p>
1035 <p>Ready to wear saree / drep saree with stitched blouse</p>
1036 <p>Ready to wear saree / drep saree with stitched blouse</p>
1037 <p>Ready to wear saree / drep saree with stitched blouse</p>
1038 <p>Ready to wear saree / drep saree with stitched blouse</p>
1039 <p>Ready to wear saree / drep saree with stitched blouse</p>
1040 <p>Ready to wear saree / drep saree with stitched blouse</p>
1041 <p>Ready to wear saree / drep saree with stitched blouse</p>
1059
1060