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 (
    410922, 402092, 403976, 408452, 428407, 
    451396, 417863, 425706, 447102, 447465, 
    418224, 454664
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00102

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 (410922,402092,403976,408452,428407,451396,417863,425706,447102,447465,418224,454664) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402092 Eco Book 731 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403976 Eco Book 805 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408452 Eco Bottle 248 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410922 Eco Book 247 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417863 Eco Bottle 263 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418224 Eco Bottle 991 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425706 Eco Bottle 683 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428407 Eco Bottle 248 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447102 Eco Bottle 741 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447465 Eco Bottle 914 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451396 Eco Bottle 251 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454664 Eco Camera 132 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.