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 (
    420919, 413105, 439177, 437268, 442349, 
    405994, 437380, 442173, 413775, 412957, 
    452843, 424041
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00043

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 (420919,413105,439177,437268,442349,405994,437380,442173,413775,412957,452843,424041) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
405994 Classic Bottle 127 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412957 Classic Bottle 434 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413105 Classic Book 873 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
413775 Classic Bottle 326 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
420919 Classic Book 796 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424041 Classic Bottle 565 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437268 Classic Book 922 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437380 Classic Bottle 231 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
439177 Classic Book 900 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442173 Classic Bottle 284 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
442349 Classic Book 990 — 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.