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 (
    415217, 420573, 426276, 436126, 447490, 
    420780, 423364, 455944, 434857, 422897, 
    410827, 413139
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00046

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 (415217,420573,426276,436126,447490,420780,423364,455944,434857,422897,410827,413139) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
410827 Lite Book 666 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413139 Lite Book 718 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415217 Lite Backpack 696 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420573 Lite Backpack 701 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420780 Lite Book 243 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422897 Lite Book 593 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423364 Lite Book 483 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
426276 Lite Backpack 728 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434857 Lite Book 588 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436126 Lite Backpack 942 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447490 Lite Book 135 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
455944 Lite Book 502 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.