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 (
    414771, 453280, 405344, 422848, 400943, 
    430821, 426840, 443680, 435695, 416538, 
    412857, 441103
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00047

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 (414771,453280,405344,422848,400943,430821,426840,443680,435695,416538,412857,441103) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
400943 Lite Mixer 840 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405344 Lite Mixer 486 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412857 Lite Phone 508 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414771 Lite Mixer 440 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416538 Lite Phone 484 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422848 Lite Mixer 720 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426840 Lite Phone 105 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430821 Lite Mixer 985 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
435695 Lite Phone 361 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
441103 Lite Phone 521 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
443680 Lite Phone 156 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453280 Lite Mixer 463 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.