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 (
    421303, 403435, 431792, 437499, 406022, 
    408527, 408919, 416225, 410745, 454746, 
    401209, 414316
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00065

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 (421303,403435,431792,437499,406022,408527,408919,416225,410745,454746,401209,414316) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
401209 Eco Watch 719 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
403435 Eco Sneakers 671 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
406022 Eco Sofa 132 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408527 Eco Sofa 312 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408919 Eco Sofa 424 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410745 Eco Watch 235 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
414316 Eco Watch 908 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416225 Eco Sofa 729 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
421303 Eco Sneakers 648 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
431792 Eco Sneakers 880 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
437499 Eco Sneakers 970 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
454746 Eco Watch 447 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.