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 (
    418429, 428304, 454998, 401192, 420138, 
    420200, 411483, 433250, 448259, 456498, 
    453797, 440607
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00133

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 (418429,428304,454998,401192,420138,420200,411483,433250,448259,456498,453797,440607) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401192 Pro Headphones 712 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411483 Pro Headphones 809 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
418429 Pro Headphones 568 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420138 Pro Headphones 783 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420200 Pro Headphones 805 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428304 Pro Headphones 631 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433250 Pro Headphones 891 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440607 Pro Laptop 762 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
448259 Pro Laptop 100 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
453797 Pro Laptop 434 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454998 Pro Headphones 690 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456498 Pro Laptop 373 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.