SELECT 
  product_descriptions.product_id, 
  product_descriptions.short_description, 
  IF(
    product_descriptions.short_description = '' 
    OR product_descriptions.short_description IS NULL, 
    product_descriptions.full_description, 
    ''
  ) AS full_description 
FROM 
  product_descriptions 
WHERE 
  product_descriptions.product_id IN (
    234194, 231043, 234193, 231041, 238681, 
    231042, 238682, 231040
  ) 
  AND product_descriptions.lang_code = 'en'

Query time 0.00060

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "6.67"
    },
    "table": {
      "table_name": "product_descriptions",
      "access_type": "range",
      "possible_keys": [
        "PRIMARY",
        "product_id"
      ],
      "key": "PRIMARY",
      "used_key_parts": [
        "product_id",
        "lang_code"
      ],
      "key_length": "11",
      "rows_examined_per_scan": 8,
      "rows_produced_per_join": 8,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "5.87",
        "eval_cost": "0.80",
        "prefix_cost": "6.67",
        "data_read_per_join": "40K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ],
      "attached_condition": "((`goimagine`.`product_descriptions`.`product_id` in (234194,231043,234193,231041,238681,231042,238682,231040)) and (`goimagine`.`product_descriptions`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id short_description full_description
231040 <p>This is a 6x6 inch ceramic tile arted with an acrylic bloom.</p> <p>It is covered with high heat ceramic coating to protect the paint. And it has felt pads glued to the bottom to protect whatever surface it is placed on.<br>It can be used as a trivet or just for decoration!</p>
231041 <p>This is a 6x6 inch ceramic tile arted with an acrylic bloom.</p> <p>It is covered with high heat ceramic coating to protect the paint. And it has felt pads glued to the bottom to protect whatever surface it is placed on.<br>It can be used as a trivet or just for decoration!</p>
231042 <p>This is a 6x6 inch ceramic tile arted with an acrylic bloom.</p> <p>It is covered with high heat ceramic coating to protect the paint. And it has felt pads glued to the bottom to protect whatever surface it is placed on.<br>It can be used as a trivet or just for decoration!</p>
231043 <p>This is a 6x6 inch ceramic tile arted with an acrylic bloom.</p> <p>It is covered with high heat ceramic coating to protect the paint. And it has felt pads glued to the bottom to protect whatever surface it is placed on.<br>It can be used as a trivet or just for decoration!</p>
234193 <p>This is a 6x6 inch ceramic tile arted with an acrylic dip and swipe. The bright colors are so much fun!</p> <p>It is covered with high heat ceramic coating to protect the paint. And it has felt pads glued to the bottom to protect whatever surface it is placed on.<br>It can be used as a trivet or just for decoration!</p>
234194 <p>This is a 6x6 inch ceramic tile arted with an acrylic bloom. It looks like a rainbow explosion!</p> <p>It is covered with high heat ceramic coating to protect the paint. And it has felt pads glued to the bottom to protect whatever surface it is placed on.<br>It can be used as a trivet or just for decoration!</p>
238681 <p>This is an 8 inch hexagon ceramic tile arted with an acrylic bloom.</p> <p>It is covered with high heat ceramic coating to protect the paint. And it has felt pads glued to the bottom to protect whatever surface it is placed on. It can be used as a trivet or just for decoration!</p>
238682 <p>This is a 6x6 inch ceramic tile arted with an acrylic bloom.</p> <p>It is covered with high heat ceramic coating to protect the paint. And it has felt pads glued to the bottom to protect whatever surface it is placed on.<br>It can be used as a trivet or just for decoration!</p>