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 (
    422451, 420738, 440135, 427608, 430254, 
    422033, 405045, 420628, 445650, 409275, 
    417856, 421213, 459072, 434781, 459407, 
    447088, 436478, 422140, 428560, 456487, 
    411199, 403278, 449543, 407451
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00087

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.04252208,
    "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": 24,
          "cost": 0.04252208,
          "filtered": 100,
          "attached_condition": "cscart_product_descriptions.product_id in (422451,420738,440135,427608,430254,422033,405045,420628,445650,409275,417856,421213,459072,434781,459407,447088,436478,422140,428560,456487,411199,403278,449543,407451) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
403278 Max Mixer 345 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405045 Max Grinder 914 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
407451 Max Mixer 430 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
409275 Max Headphones 204 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
411199 Max Mixer 256 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417856 Max Headphones 279 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420628 Max Grinder 929 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420738 Max Grinder 392 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421213 Max Headphones 281 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422033 Max Grinder 850 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422140 Max Laptop 250 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
422451 Max Grinder 316 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
427608 Max Grinder 490 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428560 Max Laptop 394 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
430254 Max Grinder 848 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
434781 Max Headphones 399 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
436478 Max Laptop 223 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
440135 Max Grinder 475 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445650 Max Headphones 108 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447088 Max Headphones 798 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
449543 Max Mixer 346 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456487 Max Laptop 607 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459072 Max Headphones 385 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
459407 Max Headphones 547 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.