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 (3710, 3739, 3744, 3745) 
  AND q_product_descriptions.lang_code = 'en'

Query time 0.00033

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "9.61"
    },
    "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": 4,
      "rows_produced_per_join": 4,
      "filtered": "100.00",
      "index_condition": "((`portal`.`q_product_descriptions`.`product_id` in (3710,3739,3744,3745)) and (`portal`.`q_product_descriptions`.`lang_code` = 'en'))",
      "cost_info": {
        "read_cost": "8.81",
        "eval_cost": "0.80",
        "prefix_cost": "9.61",
        "data_read_per_join": "15K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ]
    }
  }
}

Result

product_id short_description full_description
3710 <ul><li>Excellent insulation and insulation effect using high-grade insulation material / You can extend cool and warm time much more if you put the ice pack into the bag / Stylish shoulder bag type / Spacious interior space</li></ul>
3739 <ul class="jsx-1889249662 highlights"><li class="jsx-1889249662">Equipped with a zippered closure that allows you to keep your things securely</li><li class="jsx-1889249662">Contains a strap that allows you to comfortably carry it around</li><li class="jsx-1889249662">Sturdy construction enhances prolonged usage</li></ul>
3744 <ul class="jsx-1889249662 highlights"><li class="jsx-1889249662">Equipped with a zippered closure that allows you to keep your things securely</li><li class="jsx-1889249662">Contains a strap that allows you to comfortably carry it around</li><li class="jsx-1889249662">Sturdy construction enhances prolonged usage</li></ul>
3745 <ul class="jsx-1889249662 highlights"><li class="jsx-1889249662">Equipped with a zippered closure that allows you to keep your things securely</li><li class="jsx-1889249662">Contains a strap that allows you to comfortably carry it around</li><li class="jsx-1889249662">Sturdy construction enhances prolonged usage</li></ul>