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 (
    417156, 412957, 447950, 452843, 421121, 
    421884, 451854, 423912, 449116, 421546, 
    415507, 439646
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00091

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 (417156,412957,447950,452843,421121,421884,451854,423912,449116,421546,415507,439646) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
412957 Classic Bottle 434 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
415507 Classic Bottle 958 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417156 Classic Bottle 429 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421121 Classic Bottle 614 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421546 Classic Bottle 905 — 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.
423912 Classic Bottle 870 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439646 Classic Bottle 980 — 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.
449116 Classic Bottle 892 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
451854 Classic Bottle 766 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
452843 Classic Bottle 545 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.