SELECT 
  cscart_product_descriptions.product_id, 
  cscart_product_descriptions.short_description, 
  IF(
    cscart_product_descriptions.short_description = '' 
    OR cscart_product_descriptions.short_description IS NULL, 
    cscart_product_descriptions.full_description, 
    ''
  ) AS full_description, 
  cscart_product_descriptions.unit_name 
FROM 
  cscart_product_descriptions 
WHERE 
  cscart_product_descriptions.product_id IN (
    406224, 422923, 457984, 453943, 450049, 
    405633, 430582, 456463, 429914, 430289, 
    455165, 457214
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00056

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.0216566,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_descriptions",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "product_id"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["product_id", "lang_code"],
          "loops": 1,
          "rows": 12,
          "cost": 0.0216566,
          "filtered": 100,
          "attached_condition": "cscart_product_descriptions.product_id in (406224,422923,457984,453943,450049,405633,430582,456463,429914,430289,455165,457214) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405633 Prime Phone 544 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406224 Prime Mixer 862 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422923 Prime Mixer 998 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429914 Prime Phone 999 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430289 Prime Router 271 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430582 Prime Phone 628 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450049 Prime Phone 482 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453943 Prime Phone 367 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455165 Prime Router 655 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456463 Prime Phone 831 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457214 Prime Router 753 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
457984 Prime Phone 262 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.