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 (
    456473, 437062, 428608, 450216, 438012, 
    415468, 405950, 420047, 447950, 413235, 
    421884, 404972
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00202

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 (456473,437062,428608,450216,438012,415468,405950,420047,447950,413235,421884,404972) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
404972 Classic Bottle 670 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
405950 Classic Bottle 383 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413235 Classic Bottle 503 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415468 Classic Bottle 302 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420047 Classic Bottle 455 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421884 Classic Bottle 634 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
428608 Classic Book 751 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437062 Classic Book 734 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
438012 Classic Bottle 295 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447950 Classic Bottle 469 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
450216 Classic Book 924 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
456473 Classic Book 677 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.