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 (
    493539, 314014, 320614, 321174, 330414, 
    335694, 336454, 347574, 357574, 360774, 
    369454, 427535
  ) 
  AND product_descriptions.lang_code = 'en'

Query time 0.00073

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "10.37"
    },
    "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": 12,
      "rows_produced_per_join": 12,
      "filtered": "100.00",
      "cost_info": {
        "read_cost": "9.17",
        "eval_cost": "1.20",
        "prefix_cost": "10.37",
        "data_read_per_join": "61K"
      },
      "used_columns": [
        "product_id",
        "lang_code",
        "short_description",
        "full_description"
      ],
      "attached_condition": "((`goimagine`.`product_descriptions`.`product_id` in (493539,314014,320614,321174,330414,335694,336454,347574,357574,360774,369454,427535)) and (`goimagine`.`product_descriptions`.`lang_code` = 'en'))"
    }
  }
}

Result

product_id short_description full_description
314014 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
320614 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
321174 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
330414 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
335694 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
336454 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
347574 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
357574 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
360774 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
369454 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
427535 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>
493539 <p>Our headbands are made from alpaca yarn hand-spun on the farm.&nbsp; Each has a set of buttons that allow for adjustment to fit just about any head size.</p> <p>Please specify pattern or color when ordering.</p>