SELECT 
  ushop_product_descriptions.product_id, 
  ushop_product_descriptions.short_description, 
  IF(
    ushop_product_descriptions.short_description = '' 
    OR ushop_product_descriptions.short_description IS NULL, 
    ushop_product_descriptions.full_description, 
    ''
  ) AS full_description, 
  ushop_product_descriptions.unit_name 
FROM 
  ushop_product_descriptions 
WHERE 
  ushop_product_descriptions.product_id IN (395, 404) 
  AND ushop_product_descriptions.lang_code = 'es'

Query time 0.00033

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "1.41"
    },
    "table": {
      "table_name": "ushop_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": 2,
      "rows_produced_per_join": 2,
      "filtered": "100.00",
      "index_condition": "((`marketplace`.`ushop_product_descriptions`.`product_id` in (395,404)) and (`marketplace`.`ushop_product_descriptions`.`lang_code` = 'es'))",
      "cost_info": {
        "read_cost": "1.21",
        "eval_cost": "0.20",
        "prefix_cost": "1.41",
        "data_read_per_join": "12K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description",
        "unit_name"
      ]
    }
  }
}

Result

product_id short_description full_description unit_name
395 <p><span class="content">The all new 100mm travel Evolve sst.2 with ICT Technology is dialed in to maintain the legendary efficiency, handling and ride of a nimble full suspension cross country bike while harnessing the rolling efficiency and feel of the 29" wheel. The NEW super formed pivot integrated seat tube is lighter and stronger while the NEW semi-integrated tapered head tube is stiffer and more responsive. </span></p>
404 <p><span class="content">The legendary performance of the 100mm travel Truth sst.2 has been enhanced through fine tuning and tweaking over countless seasons of XC and endurance racing in every condition imaginable. With Ellsworth's proprietary ICT suspension, SST tubing,a lighter and stronger pivot integrated seat tube and a semi-integrated tapered head tube - this is the fastest Truth ever created. </span></p>