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 (
    429951, 402148, 423821, 410922, 408452, 
    417863, 425706, 447102, 424216, 416027, 
    412406, 425747
  ) 
  AND cscart_product_descriptions.lang_code = 'en'

Query time 0.00060

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 (429951,402148,423821,410922,408452,417863,425706,447102,424216,416027,412406,425747) and cscart_product_descriptions.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

product_id short_description full_description unit_name
402148 Eco Backpack 732 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
408452 Eco Bottle 248 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
410922 Eco Book 247 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
412406 Eco Camera 997 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
416027 Eco Camera 574 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
417863 Eco Bottle 263 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
423821 Eco Backpack 906 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
424216 Eco Camera 571 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425706 Eco Bottle 683 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
425747 Eco Chair 427 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
429951 Classic Watch 591 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.
447102 Eco Bottle 741 — high quality, tested and ready to ship. Generated sample data for CS-Cart import.