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 (
    446036, 458366, 401320, 404458, 424315, 
    433313, 419977, 421981, 416661, 445782, 
    415839, 451947
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00041

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 (446036,458366,401320,404458,424315,433313,419977,421981,416661,445782,415839,451947) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401320 Eco Camera 626 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
404458 Eco Camera 661 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415839 Eco Drone 416 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416661 Eco Chair 814 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
419977 Eco Camera 940 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421981 Eco Chair 429 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424315 Eco Camera 757 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
433313 Eco Camera 794 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
445782 Eco Drone 328 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
446036 Eco Camera 353 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451947 Eco Drone 436 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
458366 Eco Camera 582 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.